The page contains two buttons, from twitter and from facebook.
What I\'m observing in Firefox 3.5.15 is:
You can easily solve this issue with CSS:
iframe { float: left; padding-right: 10px; }
EIDT: If you want them to be centered, simply wrap them in a div (which they already are wrapped with, give that div a class or an ID. For example, let's give it a class of twfb
for twitter/facebook. Now in the CSS we'll declare a width and automatic margins as so:
.twfb { width: 120px; margin: 0 auto; }
EDIT 2: To remove the large margin from the facebook, simply add this to your CSS:
.fb_edge_widget_with_comment { margin-left: -26ppx; }
That should align them nice and close to each other.
That should do it!
Good luck