Like Chris mentioned, the problem is with blanket CSS rules being applied to all inputs and labels by your theme. If you look at the theme stylesheet, site.css (line 436) floats all inputs to the left and again in the site.css file (line 463) the rule is floating the labels and constraining the label width to 140px wide.
If you disable these properties, you'll see that the form formatting is corrected.
screenshot: http://bit.ly/ozENQG
The easiest way to remedy your issue (and probably future form formatting issues) is to remove those properties from your stylesheet. If you don't want to do that, you'll need to use better inheritance and target the forms with some new CSS rules to override the theme styles.
You can find information and examples on how to properly do that in the documentation here:
http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples
If you're not sure where to put your CSS, you'll probably need to contact your theme provider for guidance. You should be able to append any new CSS rules to the end of the site.css file. Beyond that, you shouldn't need to re-upload the entire theme to your WordPress installation. Dreamweaver should let you make a normal FTP connection and then edit/upload individual files directly. If you're not sure how to do that, you'll probably do well searching google for a quick tutorial.
If you get stuck, you may consider contracting a developer to help you out. Here's a good place to start looking for someone if you need.
http://wpcandy.com/pros/experienced/with-gravity-forms
Posted 13 years ago on Thursday July 14, 2011 |
Permalink