Different layout options for different parts of the form

  • bellspureice
    Asked on May 12, 2015 at 2:34 AM
    I'm also wondering if there is a way to have different layout options for different parts of the form, e.g. have a label width of 100 in one section and 200 in another. 
  • Boris
    Replied on May 12, 2015 at 3:00 AM

    Yes, that is possible, but you will need to achieve this by injecting custom CSS into your form.

    For this, you will need to know field IDs of the specific fields that you would like to change.

    For example, for a field with ID number 11, you would add the following custom CSS:

    #label_11 {
      width: 320px !important;
    }

    Different layout options for different parts of the form Image 1 Screenshot 30

    This is what the field label would look like:

    Different layout options for different parts of the form Image 2 Screenshot 41

    You can take a look at this guide on How to find Field IDs and Names.

    Please let us know if you need further help, and we will be glad to assist you.