Hi there, I am a bit CSS challenged here. I have a form in a sidebar widget, the submit button is very far below the email field. How do I tell it to move up? Thanks so much! :)
Hi there, I am a bit CSS challenged here. I have a form in a sidebar widget, the submit button is very far below the email field. How do I tell it to move up? Thanks so much! :)
I can help you out with this. Can you post a link to your form?
Thanks Rob!
Link to the site where it appears: http://san.wilder2sandbox.com/for-entrepreneurs/
The sidebar widgets are naturally very dark, I used this custom CSS:
body #gform_wrapper_3 .gform_heading {
font-size: 18px;
}
body #gform_wrapper_3 .gform_body .gform_fields .gfield .ginput_container {
border-style: dotted;
border-width: 1px;
border-color:#666666;
}
body #gform_wrapper_3 .gform_footer input[type=submit] {
border-style: dotted;
border-width: 1px;
border-color:#666666;
}
but not sure how to make that submit button move up. Thanks again!
No problem, try dropping this into your theme's stylesheet:
[css]
.gform_widget .gform_wrapper .gform_footer {
padding: 0;
margin: 0;
}
Perfect, thank you very much Rob!!
No problem, glad to help out!