Padding around the form

  • AMWater
    Asked on June 12, 2017 at 3:17 PM

    I noticed there is a 60px around my forms, is there to get rid of it?

  • Jan
    Replied on June 12, 2017 at 4:39 PM

    Are you planning to remove the gray part of the form and the border around it?

    Padding around the form Image 1 Screenshot 30

    If yes, then please insert this custom CSS code:

    .jotform-form {
    padding: 0 0 !important;
    }

    .supernova .form-all, .form-all {
    border: 0 !important;
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    }

    .supernova {
    background-color: #ffffff !important;
    }

    Here's a guide on How-to-Inject-Custom-CSS-Codes. This will remove the box shadow and border. This will also change the form's background color to white. Here's the result:

    Padding around the form Image 2 Screenshot 41

    Hope that helps. If you need further help, let us know. Thank you.