Wordpress / Disqus视觉故障:空白

时间:2012-06-02 16:34:39

标签: css wordpress disqus clearfix

WP Disqus官方插件评论与其社交栏(喜欢/不喜欢/设置)之间存在巨大的空白,如此屏幕截图所示:http://i.imgur.com/RjRs6.jpg 巧合的是,空白区域在右侧边栏结束的地方结束。 正如Firebug所示,disqus_thread或disq-content中存在导致此故障的内容。 我尝试删除我的个人style.css clearfix代码或只是删除高度:0,但没有改变

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

你可以在我博客的任何帖子(即http://www.flapane.com/blog/2010/11/rai-rinuncia-ad-acquistare-diritti-champions-league/)上看到它“直播”,只是在帖子本身和Disqus评论之间。

任何提示?提前致谢

1 个答案:

答案 0 :(得分:0)

固定。 Disqus有这样的案例的解决方案:

#dsq-content { overflow:auto !important; }

然而,它显示了一个垂直滚动条,因此我将其更改为:

#dsq-content { overflow:hidden !important; }