Hello, I would like to reduce the spacing between the Field Label and Descriptions for each input field. Thanks you!
Hello Hideki. Can you share a link to the page on your site where we can see the form? Thank you.
Hello Hideki. Please try this CSS added to your theme stylesheet or wherever you added the CSS last time:
body .gform_wrapper .top_label div.ginput_container {
margin-top: 0!important;
}
That should fix the distance of the top labels to the inputs.
To fix the sublabels below the inputs, please try this CSS (add to the same place):
body .gform_wrapper .top_label span input+label {
line-height: 1.5em!important;
}
1 Like
Thank you!
1 Like