0

我添加了以下代码以获得一个不错的 twitter 关注按钮:

 <a href="https://twitter.com/twitterid" class="twitter-follow-button" data-show-count="false" data-show-screen-name="false" data-lang="en">Follow us @Twitter</a>

有没有办法为facebook获得类似的按钮?我试图在facebook配置它,但我得到了它的计数,这是我不想要的。

4

1 回答 1

1

首先,您需要完整地实现 Facebook 提供的代码。然后,您可以应用隐藏计数的 CSS 样式。通过Jacob Quatier尝试此解决方案:

/* CSS Hack for hiding the LIKE count */
div.fb-like span {
  display:block;
  width:48px !important;  
}

div.fb-like iframe {
  width:48px !important;
}

div.fb-like iframe.fb_iframe_widget_lift {
  width:450px !important;
}
于 2013-08-29T04:35:46.677 回答