Is there a way to move the descriptions closer to the boxes?
http://promarine-realty.com/contact
Thanks,
Patti
Is there a way to move the descriptions closer to the boxes?
http://promarine-realty.com/contact
Thanks,
Patti
In your theme's style.css you have:
.entry-content input {
margin: 0 0 24px 0;
}
on line 611. That's what's causing the large space between the description and the input field.
Patti, this style in your css is causing your gap:
[css]
.entry-content input {
margin: 0 0 24px 0;
}
You can drop this in if you don't want to alter that style:
[css]
.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"] {
margin: 0;
}
Thanks Rob and Kyle. As usual great support!
Patti
No problem, glad to help! :)