0

在我的 joomla 3 扩展中,我正在显示一个类似 facebook 的按钮。如果用户单击like 按钮,则应显示评论框的 iframe 将被剪切,并且只有一小部分可见。
我没有做一些特别的事情。

<div class="pull-left event-button">
    <div class="dp-share-button"><div id="fb-root"></div
        <fb:like href="http://joomla.digital-peak.com/demo/dpc/en" layout="button_count" show_faces="true" send="true" width="" action="like" font="arial" colorscheme="light"></fb:like>
    </div>
</div>

可以在此处找到演示http://joomla.digital-peak.com/demo/dpc/en单击“赞”按钮。我在网上上下搜索,我快疯了,因为我找不到修复它的方法。如果有人可以帮助我真的很感激!

4

2 回答 2

0

Happened to me too, just force the margin and padding to zero, set a max-height and max-width, this will solve for most users but still on some devices it will randomly load wrong.

于 2013-04-20T07:47:28.483 回答
0

我无法测试它,因为我不使用 Facebook,而是使用标记,如果问题是溢出属性,您可以尝试将以下 jQuery 脚本添加到您的日历脚本中:

<script>
(function($){
    $(document ).ready(function(){
        $(".dp-share-button" ).find("iframe").css("overflow","visible");
    });
})(jQuery);
</script>

最后,我认为通过这个示例 jQuery 脚本,您可以使用一个工具来测试不同的 css 属性,并可能获得最佳解决方案。可能您需要某种触发器,例如$("yourbutton").bind("click", function(){ // your css modification code inside here });

于 2013-04-19T17:35:57.810 回答