开发者

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, or
  • padding-bottom: 32767px and margin-bottom: -32767px
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜