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 need the background for the Facebook "like" button to be transparent.
I've achieved this one time but I don't remember how I did it.

allowTransparency="true" in the iframe version of the button doesn't work either.
Any ideas?

share|improve this question
possible duplicate of How to remove the "Facebook social plugin" text? – ifaour Sep 25 '11 at 14:30

2 Answers

allowTransparency="true" with iframe version should work, I have used it recently without any problem like this:

<iframe src="//www.facebook.com/plugins/like.php?app_id=242000359180192&amp;href=www.facebook.com%2Fbevagus&amp;send=false&amp;layout=button_count&amp;width=180&amp;show_faces=true&amp;action=like&amp;colorscheme=dark&amp;font&amp;height=21&amp;locale=cs_CZ" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:180px; height:21px;" allowTransparency="true"></iframe>
share|improve this answer

Try this in your Java-code

mWebView.setBackgroundColor(Color.TRANSPARENT);
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.