You have 2 issues going on. First, your forms.css path is there, but it's giving a 404 error. WordPress may have flubbed your installation or something else went wrong, but that's why you're not seeing most of the styling. I also notice that you're still running version 1.4.5. I would go ahead and run the auto-update from the plugins page to get the new 1.5 version. That may fix the missing stylesheet issue as well.
The other issue is a headway style that's causing problems. Line 643 of the headway.css file sets all labels to "display:block" and this is causing formatting errors inside your forms.
You can try adding this to your custom.css and it should override the headway default rule.
[css]
body .gform_wrapper .gform_body .gform_fields .gfield label {display: -moz-inline-stack; display: inline-block; zoom: 1; *display: inline;}
Let me know how that works out.
Posted 13 years ago on Friday April 1, 2011 |
Permalink