它在 Firefox 中运行良好,但在 chrome 中却没有,我使用了 firebug 并发现默认的 css 高度导致了这个问题。我怎样才能解决这个问题?
它在 Joomla 2.5 中使用 ITP 共享模块,尝试过溢出:可见但没有帮助。
它在 Firefox 中运行良好,但在 chrome 中却没有,我使用了 firebug 并发现默认的 css 高度导致了这个问题。我怎样才能解决这个问题?
它在 Joomla 2.5 中使用 ITP 共享模块,尝试过溢出:可见但没有帮助。
尝试使用你的 CSS 来解决这个问题。
将 facebook 共享模块放在具有唯一类或 id 的 div 中。
例子:
<div id="FacebookShareContainer"><!--put here the plugin in your html page--></div>
然后:
在你的css文件中:
#FacebookShareContainer span{
height:19px;
}
#FacebookShareContainer iframe{
height:19px;
}
检查浏览器上的缩放 - Facebook 点赞按钮会在稍微缩小时以这种方式出现。