I have tried to add padding between fields using this css I got from another topic:
body .gform_wrapper ul li.gfield {
padding-bottom:30px;
}
However it doesn't seem to be working.
I have tried to add padding between fields using this css I got from another topic:
body .gform_wrapper ul li.gfield {
padding-bottom:30px;
}
However it doesn't seem to be working.
Looks like you need to use more specific inheritance with your rule to override the theme CSS. Try this instead.. it works fine in my test.
[css]
body #content .gform_wrapper ul.gform_fields li.gfield {
padding-bottom: 30px !important;
}
Works perfectly! Thanks so much for such a swift reply on Good Friday!
Glad that worked for you. My pleasure. Enjoy your weekend.