Changing the padding on the body of my form

On one of my forms im needing to change the padding to have less space in between each section. Is there CSS coding or something that can be used to adjust this?

Hey Patrick,

To reduce the gap between fields, please try the following CSS code in the child theme’s style.css file or in Appearance → Customize → Additional CSS.

form .gform_body .gform_fields {
  row-gap: 20px !important;
}

Before:

After:

Give it a try, and let me know how that goes! :smile: