I was working on the forms on my site and in the working/preview mode there are spaces between the section breaks but when I upload the form to a page, the sections get crammed together.
How do I fix this?
I was working on the forms on my site and in the working/preview mode there are spaces between the section breaks but when I upload the form to a page, the sections get crammed together.
How do I fix this?
Your theme CSS is setting a margin rule that's overriding the default form styles. You'll find the rule on line 1000 of your theme's style.css file.
You can append this to the end of your theme's style.css file and it should get you back in the game.
body .gform_wrapper ul.gform_fields li.gfield.gsection {margin:20px 0 16px 0!important}
Just a note: If it works/formats properly in the preview window but not on your site, it's going to be a theme-related issue of some sort.