http://maraglazer.com/contact/ I'd like to fix the spacing between each field on this form as well as get ride of the spacing under the submit button... how would I go about doing this?
Thanks!
http://maraglazer.com/contact/ I'd like to fix the spacing between each field on this form as well as get ride of the spacing under the submit button... how would I go about doing this?
Thanks!
Your themes base.css stylesheet is adding a 20px bottom margin to the inputs, selects and textarea fields to correct it you will need to add a new style setting that bottom margin to 0
.gform_wrapper input[type="text"], .gform_wrapper input[type="url"], .gform_wrapper input[type="email"], .gform_wrapper input[type="tel"], .gform_wrapper input[type="number"], .gform_wrapper input[type="password"], .gform_wrapper textarea, .gform_wrapper select {
margin-bottom: 0;
}
Thank you so much! Any idea about the button? It seems to be a huge space below it.
I haven't found the culprit just yet, it could be that the margins being applied to a few elements are compounding to give the appearance of one large gap