how to change color of facebook like button

后端 未结 9 1577
野的像风
野的像风 2020-12-07 01:36

using the guide at http://developers.facebook.com/docs/reference/plugins/like

I am trying to put a like button on my web page. How can i change the color of text [Be

9条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-07 02:03

    @Mohammad Samim Samir inspired this alternate solution... he stated .fb-like-box, it didn't work for @isherwood only because of the appended "-box", ".fb-like" on it's own with followed by "{background:#f5f5f5;}", it would have worked.

    ".fb-like {
        position: relative;
        top: 3px;
        left: -10px;
        background-color: white;
        width: 220px;
        height: 20px;
        color: white;
    }"
    

    What it looks like after applying the above style to stylesheet.css

提交回复
热议问题