Responsive Facebook Comments CSS Hack Broken

后端 未结 17 1750
渐次进展
渐次进展 2020-12-12 22:48

I was using:

.fb-comments, .fb-comments span, .fb-comments iframe[style] {
    width: 100% !important;
}

To make Facebook Comments responsi

17条回答
  •  春和景丽
    2020-12-12 23:33

    Here is a small solution.. try it...

    Add this jQuery:

    $(document).ready(function(){
        $(".fb-comments").attr("data-width", $(".fb-comments").parent().width());
    });
    

提交回复
热议问题