How do I change the width of that single text box in the form?

  • joefloris
    Asked on January 12, 2017 at 1:46 PM
    A follow up question is how do I change the width of that single text box without changing all of the other text boxes in the form?
  • Nik_C
    Replied on January 12, 2017 at 4:52 PM

    You can do that by applying this CSS:

    #input_4 {

    width:100px;

    }

    Which you will copy and paste into your Custom CSS field.

    Where #input_4 is ID of the field and you can find it like this (for each field):

    1. Click settings button:

    How do I change the width of that single text box in the form? Image 1 Screenshot 40

    2. Click Advanced - Field details:

    How do I change the width of that single text box in the form? Image 2 Screenshot 51

    3. You will find the field's ID below:

    How do I change the width of that single text box in the form? Image 3 Screenshot 62

    The above CSS you can apply to any field as long as you use the correct ID. Of course, you can change the width.

    If you have any further questions or need any assistance please let us know.

    Thank you!