How to get rid of the large white space above my application?

  • ryanridgway
    Asked on October 5, 2015 at 5:58 PM
    Also, as a sidenote, does anyone know how to get rid of the large white space above my application? Roughly 1.5 inches on my laptop screen
  • Mike
    Replied on October 5, 2015 at 6:04 PM

    The following CSS has been added to your form in order to remove additional top and bottom padding from embedded form.

    @media screen and (min-width: 1024px) {
    .jotform-form {
    padding: 0;
    }
    }
    @media screen and (max-width: 1024px) and (min-width: 768px) {
    .jotform-form {
    padding: 0;
    }
    }
    @media screen and (max-width: 768px) and (min-width: 480px) {
    .jotform-form {
    padding: 0;
    }
    }

    How to get rid of the large white space above my application? Image 1 Screenshot 20

    Thank you.

  • ryanridgway
    Replied on October 5, 2015 at 9:02 PM

    You're the best, I really appreciate that!

  • Mike_G JotForm Support
    Replied on October 6, 2015 at 2:44 AM

    On behalf of my colleague, Mike, you're most welcome!  Please feel free to let us know if you have any other questions or concerns. 

    Thank you.