CSS for Address Quick Field

  • dbizzle
    Asked on August 14, 2016 at 5:01 PM

    Our customers are global, so I have added the "Country Code" widget to our form so their phone numbers get formatted properly.   There is a place to input CSS info for the widget.  I need to know what the CSS code is for the Address widget so I can make the form fields match on the form.

  • David JotForm Support Manager
    Replied on August 14, 2016 at 5:23 PM

    Please inject the following CSS code inside the widgets CSS area:

     #countries_phone1, #countries_phone2{

        background-color: #bdb7b7 !important;

        color: black !important;

    }

    Result:

    CSS for Address Quick Field Image 1 Screenshot 20

    Let us know if you need more help.

  • dbizzle
    Replied on August 14, 2016 at 5:38 PM

    That looks better.  Any idea how to make them same height?  (If I attempted to change "height" in the widget properties, it only makes the bottom field.  Can I adjust height size in CSS for both fields so they match the rest of form?

  • David JotForm Support Manager
    Replied on August 14, 2016 at 6:09 PM

    Add the following code:

    #countries_phone1 {

        height: 20px !important;

        padding-bottom: 2px !important;

        padding-top: 2px !important;

    }

    #countries_phone2{

        height: 23.77px !important;

     

    }

    Let us know if you need more help.