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.

The like box didn't appear like the one in the preview mode in the facebook developer page. Is anybody experiencing the same thing? Can anybody help me?

Differences:

  1. The colors in the preview mode was the standard FB colors, whereas in my blog some were black.

  2. The background of the box in the preview mode was white, whereas in my blog was black.

This the IFRAME that i got from FB:

<iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FIndonesia-Travel-Guidebook%2F193922257303230&amp;width=292&amp;colorscheme=light&amp;show_faces=false&amp;border_color&amp;stream=true&amp;header=true&amp;height=427" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:427px;" allowTransparency="true"></iframe>

Thank you

share|improve this question

1 Answer

Dimas The iframe version is transparent. you can fix this by adding style

background-color: #ffffff; 

Example of your iframe usage here:

http://shawnsspace.com/atests.php

<iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FIndonesia-Travel-Guidebook%2F193922257303230&amp;width=292&amp;colorscheme=light&amp;show_faces=false&amp;border_color&amp;stream=true&amp;header=true&amp;height=427" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:427px; background-color: white;" allowTransparency="true"></iframe>
share|improve this answer

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.