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.

link|improve this question

45% accept rate
You probably want to use "float: right;" but it's really hard to say without seeing what you have. Please provide your html/js code. – Ben Lee Nov 7 '10 at 16:22
feedback

4 Answers

up vote 4 down vote accepted

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/

link|improve this answer
thats great, thank you! – Moshe Marciano Nov 9 '10 at 5:27
6  
There's a problem with this, you have to set the width - you won't know the width of the box because the text is always different – Jason Jun 23 '11 at 2:05
2  
Neither text-align:right nor float:right solve the problem of a right aligned like button which should have no margin to the right border. You need to set the width, which is variable and depends on the language the button is displayed in. Sample: jsfiddle.net/Mujj6/921 – JimmyBlu Jul 22 '11 at 13:18
@ 動靜能量, it didnt work buddy !! i have tested it on my blog. – Sangram Aug 22 '11 at 11:06
feedback

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.

link|improve this answer
2  
great! this worked like a charm – Marc Mar 15 at 19:08
Perfect, this is exactly what I was looking for that brought me here. Thanks! – Cameron Spear May 10 at 16:07
feedback

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;
link|improve this answer
feedback

With DIV it's easy:

.fb-like{ vertical-align:top;}

posted also on SimpleMediaCode.info ( http://e-art.lv/x/fbas )

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.