If it works fine in the form preview and not in the page itself, then it's a style issue coming from your theme. The form is inheriting a padding property from line 1405 of your themes style.css file.
[css]
.entry ul li {
list-style-type: none;
padding: 3px 0 3px 10px;
}
You can try to override that by using some CSS inheritance. Try adding this to the end of your themes style.css file. It worked fine in my test.
[css]
body .entry .gform_wrapper .gform_body ul.gform_fields li.gfield {padding:0}
screenshot: http://grab.by/9xJ1
Posted 13 years ago on Friday March 18, 2011 |
Permalink