Right align Facebook like button

2019-02-04 05:31发布

I am able to put a Facebook like button on my website, but how do I make it to be right-aligned within the div/iframe it is in?

I tried applying various CSS properties, but I could not get anything to move in the iframe.

7条回答
做自己的国王
2楼-- · 2019-02-04 05:49

I think this link could help too: http://shades-of-orange.com/post/2011/01/09/Embed-Facebook-Like-Button-e28093-Right-Align-with-css-and-Settings.aspx

It says to set the width to "0". Then the box will be autoresize by Facebook and you can apply a float right to that box.

查看更多
ら.Afraid
3楼-- · 2019-02-04 05:56

Thanks for everyone's input. The position relative trick doesn't always do it for me:

div.around-fb-like{
    position:relative;
    float:right;
}

So far this has been more dependable:

#fb-root{
    position:absolute;
    left:-1000%;
}
查看更多
【Aperson】
4楼-- · 2019-02-04 06:06

What is described in Embed Facebook Like button – Right align with CSS and settings works. However, in my website, I had to change the style to

position:relative; right:-130px;
查看更多
狗以群分
5楼-- · 2019-02-04 06:09

Seems as though there are many ways to achieve this that work in different situations.

None of the above seemed to make any difference to the position of my 'like' button, however a little trial and error with a "margin-left" tag and I got it in the right place.

查看更多
趁早两清
6楼-- · 2019-02-04 06:10

the 'like' social plug-in seems to have changed styles within the iframe. what's the best way to prevent the 'like' from flowing right, on the following page?

[http://www.biographile.com/the-righteousness-and-ruin-of-science-on-this-week-in-history/16573/][1]

查看更多
时光不老,我们不散
7楼-- · 2019-02-04 06:13

iframe is an inline element, you can use

text-align: right

for a div that contains that iframe, or float the iframe to the right, but just make sure to clear the float afterwards.

sample: http://jsfiddle.net/Mujj6/3/
and: http://jsfiddle.net/Mujj6/5/

查看更多
登录 后发表回答