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.

facebook comment plugin doesn't works good on Safari browser, it appears to the side and can't see it within the tab. Anyone know? Know how to fix it?

Its work but appears to the left side even I set to right, then in the tab do not see the comment plugin. It happens only in the Safari browser

 <div id="fb-root"></div>
  <script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
   js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/he_IL/all.js#xfbml=1&appId=*****";
  fjs.parentNode.insertBefore(js, fjs);
  }(document, 'script', 'facebook-jssdk'));</script>

    <img src="image.jpg"/><br/>

   <div class="fb-comments" data-href="the link..." data-num-posts="5" data-width="800" align="right"></div>

It is important to note that it works well in all other browsers thank's

share|improve this question
Without test page / codes, we can't really help. – Shivan Raptor Aug 15 '12 at 9:22
hi, i edit the first post, include the codes.. thanks – Tomer Aronovsky Aug 15 '12 at 9:52

1 Answer

Seems to work ok for me in Safari 5.1.5. I wouldn't try adding align as an attribute of the fb plugin element.

Try something like this:

<div align="right">
  <div class="fb-comments" data-href="the link..." data-num-posts="5" data-width="800"></div>
</div>

You may have more complicated HTML than what you have included in your question, so maybe post a screenshot and more of the HTML.

share|improve this answer
I would suggest using CSS instead of align attribute in modern HTML codes. use style="float: right;" instead. – Shivan Raptor Aug 16 '12 at 2:28

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.