I'm not sure about the error that's being written to the page offhand. We may need to get an admin login to your site to take a look. Here's what I do know.
Line 17 of your theme's style.css adds a 15px left margin to any unordered list item inside the "content_wide" div. Since the forms are structured using unordered lists, they're inheriting from this rule and it's causing layout problems. You can add this to the end of your style.css file to override that.
[css]
#content_wide .gform_wrapper ul li {
margin-left:0!important
}
You're also using the CSS Ready Classes incorrectly so you're going to get odd floating behaviors. This is what you currently have:
screenshot: http://grab.by/aj6q
* gf_left_third
* gf_left_third
* gf_left_third
* gf_left_third
* gf_left_third
* gf_middle_third
* gf_middle_third
* gf_middle_third
* gf_middle_third
* gf_right_third
* gf_right_third
For everything to display properly, you need to sequence the classes properly.. left -> middle -> right. The margins, floats & widths are specifically tailored to work together that way.
Here's the correct way to do it.
* gf_left_third
* gf_middle_third
* gf_right_third
* gf_left_third
* gf_middle_third
* gf_right_third
* gf_left_third
* gf_middle_third
* gf_right_third
* gf_left_third
* gf_middle_third
Once you've overriden the theme style and properly applied the Ready Classes, you should start seeing the layout come together
Posted 13 years ago on Wednesday June 8, 2011 |
Permalink