Contact Form Problems
Trying to install this contact form: http://www.catswhocode.com/blog/how-to-create-a-built-in-contact-form-for-your-wordpress-theme
I'm getting HUGE gaps between fields: http://themeforward.com/d开发者_开发技巧emo2/features/contact-form/
Any idea what the problem is? I should be able to figure this one out after the problem is identified.
According to the markup, you have your padding-bottom
set to 32767px.
Take a look at these CSS class definitions:
#archive_content ul li, #content ul li {
padding-bottom: 32767px;
...
}
The problem is this CSS rule in style.css
(line 1260):
#post_content ul li, #archive_content ul li, #content ul li {
padding-bottom: 32767px;
}
The margin-bottom: -32767px;
would counteract that if it wasn't immediately superceded by margin: 10px 0;
.
So, from that rule set, remove either:
margin: 10px 0
, orpadding-bottom: 32767px
andmargin-bottom: -32767px
精彩评论