How can I change order of sub fields in address?

  • stabilnyugdij
    Asked on October 13, 2016 at 2:52 AM

    Example:

    Zip   City
    Address

  • Mike_G JotForm Support
    Replied on October 13, 2016 at 7:34 AM

    We can try to swap the "City" textbox and the "Zip Code" textbox of the address field with the help of CSS codes injected to your form.

    Please try to add the CSS codes below to your form.

    #id_17 .form-address-table tr:nth-child(3) td {

        background-color: green !important;

        position: relative !important;

        top: 49px !important;

    }

    #id_17 .form-address-table tr:nth-child(4) td {

        background-color: blue !important;

        position: relative !important;

        top: -49px !important;

    }

    To learn how to inject custom CSS codes to your form, please check this guide: How-to-Inject-Custom-CSS-Codes

    I hope this helps. If you need any further assistance, please feel free to contact us anytime.

    Thank you.