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.

Possible Duplicate:
Facebook Like-Button - hide count?

I need facebook like button without count information. I tried it with giving 50px width. but when someone "like" the page its turn in "you liked it" and distorting the UI.

I need just like image without counr.

Thanks Suren

share|improve this question
If you are in iframe mode this is possible by just reducing the width to about 50px. But XFBML or HTML5 mode will not obey your width. – user949703 Sep 16 '11 at 23:16

marked as duplicate by casperOne Aug 6 '12 at 19:49

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

5 Answers

up vote 5 down vote accepted

Can you wrap it in div containers w/ absolute dimensions & float it. . . so the overflow wont disrupt anything.

share|improve this answer
This yet does the trick. Thank you! – Geppettvs D'Constanzo Mar 6 at 1:19

Just give a width of 47px and it seems to works fine. I think they have changed the UI recently - now when you like it there is just a tickbox added to the like button and it doesn't distort the UI.

share|improve this answer
I am using 50px and it is doing good the trick. Thank you! – Geppettvs D'Constanzo Mar 6 at 1:20

NB. Facebook localizes the button - so the "like" button might be in a different language. Then of course this image is not a standard width - so you cant guarantee being able to hide it by setting width of iframe or css settings.

share|improve this answer

I do not think it is possible. The whole UI is driven from Facebook and you can see all the variations here http://developers.facebook.com/docs/reference/plugins/like/

However, if you want, you may apply some CSS/JavaScript hack. The count is under uiGrid class, you may target this element and set display none after the page has rendered. In JQuery, you would $('.uiGrid').hide()

But the suggestion above is not recommended.

share|improve this answer
I don't think you could do that, as the Like button is inside an iFrame controlled by Facebook... – julien_c Mar 6 '12 at 12:44

Here's a question with several much more detailed answers to the different ways of doing this: http://facebook.stackoverflow.com/questions/2950172/facebook-like-button-hide-count

There are apparently a few cases where the answer is slightly different -- one for the javascript version, one with the iframe version, etc.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.