Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
http://www.facebook.com/plugins/like.php?href={0}&layout=standard&show_faces=true&width=450&action=like&colorscheme=light&height=80

I am using iframe.

whole code:

string iframe = string.Format("<iframe src=\"http://www.facebook.com/plugins/like.php?href={0}&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80\" scrolling=\"no\" frameborder=\"0\" style=\"border:none; overflow:hidden; width:450px; height:35px; text-align:right;\" allowTransparency=\"true\"></iframe>", fullUrl);
            return iframe;

problem i have is that text is positionibg left instead of right

share|improve this question

2 Answers

this works for me

<iframe src="http://www.facebook.com/widgets/like.php?href=<?php echo('http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']); ?>"
        scrolling="no" frameborder="0"
        style="border:none; width:450px; height:80px; background-color:#CCCCCC"; align="right"></iframe>
share|improve this answer
thx this is works but now is text in two lines not in one – senzacionale Mar 11 '11 at 9:03
You should widen the width and height of that div or table in which you are placing this iframe – Awais Qarni Mar 11 '11 at 10:07
i did but then text is not right – senzacionale Mar 11 '11 at 11:37
ok then do less the width and height of iframe. Then see the result – Awais Qarni Mar 11 '11 at 11:48
dostavahrane.si you can see that text is not right – senzacionale Mar 11 '11 at 13:35
show 1 more comment

Well ofcourse it is. You cannot specify text-align for a iframe. You have to do it within the document that is included in the iframe.

share|improve this answer
i try to add text-align outside in div but it is the same – senzacionale Mar 11 '11 at 8:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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