How to remove the bottom padding in my form that is embedded on WordPress website?

  • hokuward44
    Asked on August 20, 2016 at 5:20 PM

    I am experiencing a huge amount of space below my jot form. I've embedded it into my site with the provided embed code and tried putting custom css into my form styles but still no luck. any ideas? 

    This is the code i injected into the form

    .jotform-form {

     padding: 0px !important;

    }

     

    My website: http://www.hwddemo3.com/estimates/ 

     

    Thanks in advance for any help! 

  • Welvin Support Team Lead
    Replied on August 20, 2016 at 8:00 PM

    The custom CSS is correct. That will remove the top and bottom padding. This is how your form appears on your website upon checking:

    How to remove the bottom padding in my form that is embedded on WordPress website? Image 1 Screenshot 20

    The bottom border is off, you can inject the following custom CSS codes to fix it:

    li#id_10 {

        padding: 0px;

    }

     

    Please let us know if you need further adjustments.

     

  • hokuward44
    Replied on August 20, 2016 at 10:06 PM

    Thank you! The problem has been resolved.