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 default Facebook "Like Box" is too big for my site.

I would like to use a very simple like button, without the facebook page picture, name, fan names, etc. When my website's visitors click on it, they should become fans of my Facebook page.

I can't find out how to remove the page name and picture (not sure if it's even possible)... Any idea?

--

update:

here is a very similar question: Facebook Like button for fan page - cannot create simple button with no answer so far. Any workaround I could use?

share|improve this question

2 Answers

up vote 3 down vote accepted

Is this more like it?
https://developers.facebook.com/docs/reference/plugins/like/
So your code would look something like this:
iFrame:

<iframe src="http://www.facebook.com/plugins/like.php?app_id=212715052108961&amp;href=PAGEURL;send=false&amp;layout=button_count&amp;width=50&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px; height:21px;" allowTransparency="true"></iframe>

XFBML:

<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#appId=212715052108961&amp;xfbml=1"></script><fb:like href="PAGEURL" send="false" layout="button_count" width="50" show_faces="false" font=""></fb:like>
share|improve this answer
Exactly what I needed! Thanks! – alex Aug 2 '11 at 0:33

Why not just use a like button?

share|improve this answer
Thanks... I don't know how I could miss this!!! It does exactly what I wanted, except that this time the button is a little small. But oh well... – alex Aug 2 '11 at 0:33

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.