Change Spacing between Field Title and its Input

Hi,

What is the CSS to change the spacing of all fields?

I want to add some space between the title and the input field.

image

Thank you!

Hello @DryChips,

You can add padding to the field label using the CSS:

.fd-field-title.col-form-label {
    padding-bottom: 15px;
}
1 Like