English 中文(简体)
比如Facebook Button - 如何禁用注释弹出框?
原标题:Facebook Like Button - how to disable Comment pop up box?

我喜欢禁用当用户点击Facebook类似按钮时弹出的评论框 。

我追踪了< a href=> 的文章,“http://facebook.stackoverflow.com/ questions/3247855/facebook- like- button-how-to-disabable-comment-pop-up” Facebook Like Button - 如何禁用评论? 并更改了 CSS, 但其他任何建议都没有效果。

我不能使用IFRAME, 否则我就不能使用 FB. Event. 订阅( 边缘. create ),

最佳回答

http://developmenters.facebook.com/docs/reference/plugins/ like/"rel="nofollows">http://developers.facebook.com/docs/reference/plugins/ like/ :

< 加强> 用户何时可以选择对类似选项添加注释?

如果您正在使用 XFBML 版本的“ 类似” 按钮, 用户将总是可以选择添加注释。 & gt; 如果您正在使用该按钮的 Iframe 版本, 用户将可以选择在使用 & gt; 标准布局时进行评论, 其宽度至少为 400 像素。 如果用户确实添加了注释, 则将发布的故事重现到 Facebook 。

只要使用按钮的 Iframe 版本, 并设定宽度小于 400 像素 。

问题回答

只要添加带有溢出的样式属性 : 隐藏

<div style="overflow: hidden !important;" class="fb-like" data-href="<?php echo $url; ?>" data-layout="button_count" data-action="like" data-show-faces="false" data-share="true"></div>

将 ifram 置于 div 内, 并使用隐藏宽度和高度的溢出, 隐藏除按钮以外的任何东西 。

我试图改变CS 从在框架内, 但那不为我工作。

创建自定义 cs 类, 如 :

.fb-like{
overflow: hidden !important;
}

将课内容写进Facebook DIV

就是这样...





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

jquery ui dialog opens only once

I have a button that opens a dialog when clicked. The dialog displays a div that was hidden After I close the dialog by clicking the X icon, the dialog can t be opened again.

Drop down background url in Safari Issue

selectBox.selectCSS { background: url(/Images/replacementSelectBackground.png) top left no-repeat height:auto; } I have an issue in Safari only where the image is not rendering on top ...

CSS specific for Safari

How do you target specifically safari in css with styles?

Aligning textarea in a form

Ive used the following css code to align my form elements: form { position:relative; } form input { position:absolute; left:11em; } However, the textarea element is not aligned correctly with the ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

CSS problem with page footer

I have defined my page footer in the css file as: #footer { position: absolute; height: 50px; text-align: center; background: #66CCCC; bottom: 0px; left: 0px; width: 100%; height: ...

热门标签