它在Firefox中运行良好,但在chrome中我没有使用firebug,发现默认的css高度导致了这个问题。我该如何解决这个问题?
它正在使用Joomla 2.5中的ITP共享模块,尝试过溢出:可见但是没有帮助。
答案 0 :(得分:0)
尝试使用你的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;
}
答案 1 :(得分:0)
检查浏览器上的缩放 - 稍微缩小时,Facebook like按钮会以这种方式显示。
答案 2 :(得分:0)