How to adjust the widths of the fields inside the Addres Field?

  • BoydCooper
    Asked on February 10, 2017 at 9:51 PM

    I am trying to expand the fields in the address quick tool. I added the first suggested code

    but cannot get it to work. PLEASE HELP!  THANKS

  • Support_Management Jotform Support
    Replied on February 11, 2017 at 8:20 AM

    You just need to modify the CSS Codes a bit. Change max-width to width alone. We can also omit the !important tag since it won't be necessary for this case:

    FROM:

    [data-type=control_address] .form-input, .form-address-table, .form-textbox {

       max-width: 300px !important;

    }

    TO:

    [data-type=control_address] .form-input, .form-address-table, .form-textbox {

       width: 300px;

    }