Misalignment of Facebook & Twitter buttons

前端 未结 18 1432
你的背包
你的背包 2021-02-01 13:18

The page contains two buttons, from twitter and from facebook.

What I\'m observing in Firefox 3.5.15 is:

  1. While the page is loading, the buttons are more or
18条回答
  •  闹比i
    闹比i (楼主)
    2021-02-01 13:38

    I can't tell you what's going on in there and I don't even want to think about what < fb:headache > does there, but you should be able to resolve this issue by floating the iframe for the twitter button left and adding some margin-right to get the original look back.

    iframe.twitter-share-button { float: left; margin-right: 4px; }
    

    It's a little hackish, but should do.

    UPDATE

    .fb_iframe_widget { display: block !important; } 
    // leave important away if possible!
    
    // change main.css / line 41:
    div.text {
        clear: left;
        margin: 0 auto;
        padding: 35pt 5pt 15pt;
        width: 40em;
    }
    

提交回复
热议问题