When using the like or send widget on a Fan Page (no mater if you use iframe tag or fbml for it) the overlay for commenting is positioned always to the right. see http://twitpic.com/4q7ggi for example.

I cant find a way to get the widget to respect the 520px boundary of the facebook tab. see http://www.facebook.com/pages/Ludwig-Test/127771653944246?sk=app_101150316644842 for an example. Anyone an idea how to solve this ?

TIA Rufinus

link|improve this question

I would love to know the answer to this, so far the only solution I could find is to put the like and send button on the far left side of the screen. There was a css hack for this, but it hasn't worked in quite a while. – DannyKK Apr 27 '11 at 20:43
i only know of a JS hack, but this seems to work only with dialogs. (and then only in rare occasions). – Rufinus Apr 27 '11 at 22:02
5  
@Rufinus could you maybe post your code somewhere, or a link to the page you're working on? – Thomas Shields May 25 '11 at 19:10
Have you got a live web page or a snippet of code we could see it on Rufinus? – Liam May 26 '11 at 8:13
+1 to Liam's question - I can't find a fan page which shows the widgets in the same way your screenshot does. – Beejamin May 26 '11 at 22:34
show 1 more comment
feedback

3 Answers

up vote 13 down vote accepted
+100

Try adding this to your css:

.fb_edge_comment_widget {
    margin-left: -350px;
}

This will move comment box to the left, but the little arrow pointing to the button will move too (which you could try to cover with another element). It will only work if you're using XFBML, not an iframe.

Here's an example.

link|improve this answer
+1 Not ideal, but a good workaround. – Jimmy Sawczuk May 27 '11 at 13:07
most FB workarounds are not ideal, but the only thing which matters is when it is working :-) thanks seler. (I will wait the full 4 days if maybe someone has a better solution, but i guess the 100 points are yours) – Rufinus May 28 '11 at 9:20
@seler: I f#@!#@! love you. Thanks for helping me workaround this madness that is the FB API – rburhum Jan 6 at 3:45
feedback

If you're using the XFBML implementation of the Facebook Like button, you can use CSS to re-position the "flyout" menu relative to its original position near the Send button:

enter image description here

The above example using jsFiddle and this CSS:

.fb_edge_comment_widget {
    margin-left: -343px;
}

Since the contents of the "flyout" are inside an iframe you won't be able to apply any CSS to it — meaning, moving the triangle indicator to the right side of the "flyout" isn't possible.

Web browsers have tightened security on cross-frame scripting due to spoofing and other hacks, so iframes are treated like separate HTML pages with their own CSS and JavaScript.

For any advanced CSS styling, you would have to inject the Facebook Widget's iframe using DOM Scripting ... and even then it may not work across browsers.

link|improve this answer
2  
exact copy of previus solution – seler May 27 '11 at 18:13
feedback

Not a great answer but the only option I have found is to wrap the widget in an absolutely positioned Div to keep it on the left side of the window

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.