Added a sign up form as a widget. I have lots of space above the submit button that I would like to decrease but am unsure how. Here is the temp site: http://184.172.176.52/~woodlake/
Added a sign up form as a widget. I have lots of space above the submit button that I would like to decrease but am unsure how. Here is the temp site: http://184.172.176.52/~woodlake/
Line 440 of your theme's screen.css contains this styling:
[css]
/* Line 440 */
#sidebar ul
{
padding-top: 0px;
padding-right: 0px;
padding-bottom: 45px;
padding-left: 0px;
}
Add this to one of your theme's stylesheets (wherever your theme provider suggests adding custom CSS) to override that bottom padding:
[css]
body #sidebar ul {
padding-bottom: 0px;
}
body #sidebar .gform_wrapper .gform_footer {
margin-top: 0px;
}