Facebook评论插件在滚动时覆盖我的标题div

时间:2012-12-22 22:21:24

标签: html css facebook

是的,就像在标题中一样, Facebook评论插件会在滚动时覆盖我的标题div。

这是之前滚动: enter image description here

在滚动后enter image description here

标题栏的

样式

#header {
    height:45px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0.95;
    background: #2D2D2D;
}
#colorbars {
    border-top: 3px solid #DD5044;
    height:42px;
    border-bottom: 8px solid rgba(40, 40, 40, .2);
}
#headercontainer {
    width: 940px;
    overflow: hidden;
    margin: 0 auto 0 auto;
}
标题栏的

HTML

<div id="header"><header id="colorbars"><div id="headercontainer">
// content
</div></header></div>

Facebook插件的代码是:

<fb:comments href="<?php echo $facebook_href; ?>" width="655" num_posts="4"></fb:comments>

1 个答案:

答案 0 :(得分:0)

设置标题的z-index是否有帮助?

#header {
    /* ... */
    z-index: 9999;
}