1

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?

Community
  • 1
  • 1
alex
  • 1,900
  • 3
  • 24
  • 34

2 Answers2

5

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>
Kian
  • 1,260
  • 1
  • 13
  • 32
1

Why not just use a like button?

Andrew
  • 42,517
  • 51
  • 181
  • 281
  • 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 02 '11 at 00:33