0

I would like to remove the "comment box" after I click "like button".

I have box_count and I use this code:

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

I saw this page, but doesn't work.

How can I remove the comments from box count? Thanks.

Aldwoni
  • 1,168
  • 10
  • 24
Erfo
  • 37
  • 1
  • 8

2 Answers2

0

try this css override

.fb_edge_widget_with_comment span.fb_edge_comment_widget iframe.fb_ltr {
     display: none !important;
}
c.s.
  • 4,786
  • 18
  • 32
  • It works for button_count, but doesn't work for box_count... I have already this code in my CSS. – Erfo Aug 16 '13 at 00:56
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>