Hide fields on "Address Map Locator" widget

  • ace973
    Asked on January 3, 2018 at 12:36 PM

    I would like to hide the Latitude, Longitude, Province, and Country fields of this widget. The tips provided here does not work. Can someone recommend how to hide these fields?

    Jotform Thread 1337678 Screenshot
  • John_Benson
    Replied on January 3, 2018 at 1:54 PM

    To remove that, please add this custom CSS code to the widget window:

    div#inputLat-row {

        display: none;

    }

    div#inputLng-row {

        display: none;

    }

    div#inputCountry-row {

        display: none;

    }

    div#inputProvince-row {

        display: none;

    }

    Here's a guide on how to add the custom CSS code to the widget: https://www.jotform.com/help/428-How-to-Inject-CSS-Codes-to-Widgets

    The result of my clone form:

    1515005645422452z1a Screenshot 10


  • ace973
    Replied on January 3, 2018 at 11:58 PM

    Thanks this worked!