That's because your wrapper isn't inside an "entry" class div wrapper that I can see, and also be cause the text-indent property isn't the source of your problem. That solution was unique to the previous poster's issue.
Your problem is a negative left margin value being applied to the list items that contain the form fields. Along with that, there's extra padding that's causing an issue lastly, those list items are inheriting background images - all of this originating from your theme styles.
Try removing the previous rule you added to your theme stylesheet - it's not needed and replace it with this.
[css]
body .art-post .gform_wrapper li {
margin-left: 0 !important;
padding-left: 0 !important
}
body .art-post .gform_wrapper ul > li {
background-image: none !important;
background: none !important
}
screenshot: http://bit.ly/nOQ61p
Hope that helps.
Posted 13 years ago on Tuesday September 13, 2011 |
Permalink