The classes appear to be working properly, notice the "telefon" field is floated to the right as it should be when the "gf_right_half" class is applied.
screenshot: http://grab.by/amD6
The problem is with your THEME styles. The master.css file (line 443) adds a 17 pixel left padding to every list item (our forms are structured using an unordered list) so the field widths are thrown off and don't float properly. If you disable that rule, you'll notice that the formatting works as intended.
screenshot: http://grab.by/amD8
You can add this rule to the end of your theme stylesheet and it should override the padding so your columns will align properly.
[css]
body .entry .gform_wrapper ul li,
body .c-body .gform_wrapper ul li {
background-image: none;
padding: 0
}
This wasn't difficult to diagnose so it sounds like the Themefoundry support team was taking the day off. I hope this helps.
Posted 13 years ago on Wednesday June 15, 2011 |
Permalink