Reducing vertical spacing

  • alonr
    Asked on November 22, 2015 at 11:01 AM
    get even less spacing between elements on the page - so that it all fits in one screen without scrolling on a mobile phone
  • Jan
    Replied on November 22, 2015 at 11:08 AM

    The form fields, fonts and text boxes of your form are big and even if you reduce the vertical spacing the user still needs to scroll down if the are using a mobile phone screen size of 320x480.

    Here is the CSS code that you can use:

    .form-line {
       padding: 2px 36px !important;
       margin-top: 2px !important;
       margin-bottom: 2px !important;
    }

    Hope that helps. Thank you.

  • alonr
    Replied on November 22, 2015 at 11:55 AM

    That helped, thanks!