Facebook Like-Button - hide count?

后端 未结 15 784
我寻月下人不归
我寻月下人不归 2020-11-29 18:17

In the setup dialog for the Like-Button, there are only two options for layout:

  • Alternative 1
  • Alternative 2

Unfortunately, the numbers

15条回答
  •  星月不相逢
    2020-11-29 18:31

    If you do overflow:hidden then keep in mind that it will also hide the comment box that comes up in XFBML version... after user likes it. So best if you do this...

    /* make the like button smaller */
    .fb_edge_widget_with_comment iframe
    {
        width:47px !important;
    }
    
    /* but make the span that holds the comment box larger */
    span.fb_edge_comment_widget.fb_iframe_widget iframe
    {
        width:401px !important;
    }
    

提交回复
热议问题