It's the custom CSS you're adding and not a default form style issue.
On line 226 of forms.css file.. you've added styles and floated the comment container (#field_2_13) box above the gform_footer and didn't clear it properly. Probably no need to float that left as it's the default position. I would just remove the float property and that should work for you.
Here's the deal. Don't make edits directly in the plugin's form.css file. If you do, and use the auto-update option, all of your changes will be overwritten.
If you want to make extensive customizations, here's how you do it. Copy the entire forms.css content from the plugin file, then append all of that to your theme's style.css file.
Then, go to the forms settings page select no for the "output CSS" option. That way, the default forms.css won't load, and the styles are coming from your theme style sheet. Make all the changes you want there, then when the plugin updates, your customizations are safe.
Posted 14 years ago on Thursday June 24, 2010 |
Permalink