Working with the WooTheme Inspire.
In IE9 labels are always presented above the form fields regardless of the Label Placement settings. It works fine in all other browsers.
Any ideas?
Working with the WooTheme Inspire.
In IE9 labels are always presented above the form fields regardless of the Label Placement settings. It works fine in all other browsers.
Any ideas?
Please post a link to your form. Thank you.
In the past Woo has added Gravity Forms specific styles to their themes, and one of the things they did was always override the label setting you selected. That might be the case on your site. But we would need a link to check it out.
http://prod.svmsolutions.com/analysis/
It occurs in Internet Explorer 9
OK, so it's actually only an issue in IE7. If you are using IE9 and open the Developer Tools you can switch between different versions of IE, ranging from 7,8,9 all from within the one browser. 8 and 9 are good to go. 7 has the labels stacked (this could also be apparent in Compatibility Mode).
So - this should fix it, if you place this in your theme's stylesheet:
[css]
.gf_browser_ie7 .ginput_container {
float:left;
}
Hopefully that works for you, I had to try to solve this using IE's crappy developer tool so I'm working a little blind. But it's a start. Let me know what happens.
Here is some more info on using the IE9 developer toolbar:
http://www.sitepoint.com/debug-faster-with-f12-developer-tools-in-internet-explorer-9/