我正在建立我的第一个网站,这让我发疯。
无论我做什么,滚动条都没有出现。
我尝试使用此帖子中的提示:Custom Scrollbar with Facebook comments
它仍然无效。我做错了什么?
这是我的网站测试页面。 http://www.thespiderkingdom.com/atest.html
请帮忙或者我失去了所有的头发。
答案 0 :(得分:0)
您好我访问了您的网站,所以如果您的意思是您的评论未在评论部分滚动。
然后你可以在你的css类中做一些调整,因为(fbFeedbackContent是你的css中的类,你会发现它):
.fbFeedbackContent
{
max-height: 300px;
min-height: 160px;
overflow: scroll;
}
这会滚动只是添加css看起来不错
答案 1 :(得分:0)
标识为mCSB_1
的元素会使用overflow: hidden;
获得内联样式,我认为您应将其删除:
<div class="mCustomScrollBox mCS-dark" id="mCSB_1"
style="position:relative; height:100%; /* overflow:hidden; */ max-width:100%;">
并将#comment
样式更改为:
#comment {
height: 700px; /* If you set this to like 200px you can see the effect better */
width: 510px;
text-align: left;
position: absolute;
left: 0px;
top: 380px;
overflow: auto;
}
<强> CustomScrollBox 强>
可能是在加载Facebook评论的内容并且容器仍为空之前,插件设置了overflow: hidden;
。
在加载或更新Facebook注释后,您可以尝试(重新)初始化插件。您可以按照Facebook documentation上的说明订阅所有类型的活动。