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.

I manage/webmaster half a dozen websites that have facebook like boxes on their index pages. These were all working fine until yesterday, when suddenly they all began to display to the right of the page (where previously they had been centered). No changes have been made to any of these pages in the last day or two, so I can't think of any reason why they would all suddenly right-align. Some of these scripts are between "center" tags, Others are inside centered tables. But they're still displaying to the right of the page. I've tried everything I can think of to get them to display in the middle of the page again, but nothing I've tried works. I'm also curious to know why they would all suddenly lose their center alignment. Anyone have any ideas? Any help would be very much appreciated.

You can see an example of what I'm talking about at holisticspain-dot-net

share|improve this question

4 Answers

.fb-like-box.fb_iframe_widget *
{
    text-align: left !important;
}

This worked as a temporary fix as well.

share|improve this answer

We already apply some styling to our button (it is surrounded in <li> tags, but we found we had to change the style for this.

We previously had this style applied

.fb-tool {position:relative;left:8px;}

We changed it to this.

.fb-tool {position:relative;left:8px; text-align:left;}
share|improve this answer

Just a short answer - might help perhaps. I changed the display property of .fb_iframe_widget to relative with !important and it fixed the sudden leftiness.

share|improve this answer

Following Harold Neal and Sergei S's suggestions, you can add text-align:left; to the default style="background-color:#000000;" portion of the tag.

share|improve this answer

protected by Community Apr 18 '12 at 18:12

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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