The display problem is because of the custom CSS rules in your theme. Your custom.css file (line 54) sets a 23px height on all list items in the "format_text" container. Since the forms are structured using unordered lists, they're inheriting from this rule and most of the form content is being hidden.
[css]
.custom .format_text li {
background-image: url("http://www.renesejling.dk/test/wp-content/themes/thesis_18/custom/images/bullet2.png");
background-position: left top;
background-repeat: no-repeat;
height: 23px;
list-style-type: none;
padding-left: 16px;
}
If you remove the height property (along with the left padding and background image), you'll see that the form displays as it should
screenshot: http://bit.ly/naAQBy
Posted 13 years ago on Thursday July 7, 2011 |
Permalink