How to arrange individual input fields?

  • max123jot
    Asked on June 19, 2016 at 8:14 AM

    thanks for the below

    i will use it as a strong resource

    however, i would appreciate code? for adjusting width of individual input fields

    i dont see where this is addressed in the link below (prob am not looking in the just right place)

    thanks

    max

     

    Answered by BDAVID

     

    On behalf of my colleagues, you are welcome!

    On regards of learning more CSS, there are free online tutorials, here is one: http://www.w3schools.com/css/default.asp 

    Open a new thread if you need anything else, we will be glad to assist you.

  • John_Benson
    Replied on June 19, 2016 at 9:52 AM

    You can apply custom CSS on an individual field as long as you know the selector ID or class. In our Form Designer, you can click the text box so the assigned ID or class will appear in the CSS tab.

    How to arrange individual input fields? Image 1 Screenshot 20

    Once the selector ID appears, you can put the CSS property and the value inside the brackets {}. The selector #input_42 is the First and Last Name field. While the #input_35 is the E-mail field. Here's an example:

    #input_42 {
    width: 300px;
    }

    #input_35 {
    width: 300px;
    }

    You can change the width depending on your preference. Also, please take note that each form field has different selector ID or class.

    Hope this helps you. Let us know if you need further help. Thanks!