Reducing vertical space

  • Bergamunken
    Asked on May 18, 2015 at 10:50 AM
  • Jan
    Replied on May 18, 2015 at 12:02 PM

    Original thread title: minska radbrytning

    If I understand you correctly, you want to reduce the vertical space between the fields right?

    There are 2 ways on reducing the vertical spacing.

    1. In the form builder, click the "Preferences" button. After that, go to the "Field Styles" tab. The Question Spacing, is actually the padding of each form field. You can change the value depending on your preferences.

    Reducing vertical space Image 1 Screenshot 20

    2. Adding this custom CSS code:

    .form-line {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    }

    You can just change the value in px. Here's a guide on how to inject custom CSS.

     

    Hope this helps. Thank you.