如何从facebook box_count中删除“评论框”?

时间:2013-08-15 23:02:06

标签: facebook facebook-like

点击“按钮”后,我想删除“评论框”。

我有box_count,我使用这段代码:

<div class="fb-like" data-href="..." data-width="450" data-layout="box_count" data-show-faces="false" data-send="false"></div>

我看到this page,但无效。

如何从包装盒中删除评论?感谢。

2 个答案:

答案 0 :(得分:0)

试试这个css覆盖

.fb_edge_widget_with_comment span.fb_edge_comment_widget iframe.fb_ltr {
     display: none !important;
}

答案 1 :(得分:0)

<style>
  #fb-container {
    height: 20px !important;
    width: 93px !important;
    overflow: hidden !important;      
  }
</style>

<div id="fb-container">
    <div id="fb-root">
    <div class="fb-like" data-href="https://www.facebook.com/youraddr" data-layout="button_count" data-width="100" data-show-faces="false" data-share="false"></div>
</div>

相关问题