Trying to add space between form description and form fields. I have tried margin-top: 20px !important; and margin-bottom: 20px !important; but that doesn’t seem to affect the space between description and form fields.
You will want to target .gform_heading and instead of margin try padding-bottom. See below:
/* normal */
.gform_heading {
padding-bottom: 20px !important;
}
/* minified */
.gform_heading { padding-bottom:20px !important; }
/* for mobile */
@media only screen and (max-width: 675px) {
.gform_heading {
padding-bottom: 20px !important;
}
}
1 Like
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.