How can i change the particular text box field only???

  • RiyazHR
    Asked on May 16, 2017 at 10:21 AM

    how to change the size of my address fields  text box without affecting other fields??? 

  • BJoanna
    Replied on May 16, 2017 at 11:34 AM

    You can change the width of address fields with custom CSS codes. For your form NO IDEA, you can add this CSS code to your form:

    #input_9_addr_line1 {

        width : 475px!important;

    }

    #input_9_city {

        width : 230px!important;

    }

    #input_9_state {

        width : 230px!important;

    }

    #input_9_postal {

        width : 230px!important;

    }

    #input_9_country {

        width : 230px!important;

    }

    How to Inject Custom CSS Codes

     

    Here is my demo form: https://form.jotformpro.com/71354165971965 

    Feel free to clone it.

    Hope this will help. Let us know if you need further assistance.