How can I make the Facebook Like button's width automatically resize?

后端 未结 8 1101
清酒与你
清酒与你 2020-12-13 13:53

I\'m implementing the Facebook Like Button, but I\'m running into some trouble with the width. I\'m using the JavaScript SDK implementation, not the direct iframe.

A

8条回答
  •  温柔的废话
    2020-12-13 14:31

    #fblike iframe {
        width: 95px !important;
    }
    
    #fblike .fb_edge_comment_widget iframe {
        width: 330px !important;
    }
    

    And

    This way both comment and like button iframes are fixed width. No funny effects. Hope it helps.

提交回复
热议问题