Address Map Locator: Ability to change fields labels.

  • sleepysteff
    Asked on August 7, 2017 at 12:45 PM
    Also, is it possible the "Province" be changed to "State"?
  • Kevin Support Team Lead
    Replied on August 7, 2017 at 12:59 PM

    It's possible to change the fields labels with some custom CSS code, to replace "Province" with "State", please inject the following CSS code to your widget: 

    label.control-label[for*="inputProvince"] {

        font-size: 0px;

    }

     

    label.control-label[for*="inputProvince"]:after {

        content: "State";

        font-size: 15px;

        left: 0;

        position: relative;

    }

    This guide will help you injecting the code to your widget: https://www.jotform.com/help/428-How-to-Inject-CSS-Codes-to-Widgets 

    Result: 

    Address Map Locator: Ability to change fields labels Screenshot 20

    I hope this helps.