I've looked around the forum a bit and tried using various suggestions, but I really just can't seem to close the gap between the box and its description on this form: http://www.ptsprintshop.com - Any help is greatly appreciated.
I've looked around the forum a bit and tried using various suggestions, but I really just can't seem to close the gap between the box and its description on this form: http://www.ptsprintshop.com - Any help is greatly appreciated.
Your problem is being caused by the following bit of css in the file utility_common.css which is adding a 24 pixel margin to the bottom of all your input fields.
.k_main input {
margin: 0 0 24px 0;
}
If you can change it so it matches the following that should solve your problem
.k_main input {
margin: 0;
}
If you can't change that style because it will affect other parts of your site then check out this post by Rob on how to target the gravity forms inputs specifically.
http://www.gravityhelp.com/forums/topic/layout-of-labels-too-far-below-fields#post-43420
If you don't want to change your theme's class styling (.k_main input) you can always just target the GF complex input in your theme's stylesheet:
[css]
.gform_wrapper .ginput_complex input {
margin-bottom: 0;
}
Thanks Guys, that did it. I can't say thank you enough, and if you had answered any quicker I would have thought you were reading my mind. Thanks again.
Awesome, glad to help!