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 just want to use the like button and not show any comment popup. How can I do this?

Thanks.

share|improve this question

3 Answers

Yes, you can do it with a little but of css to hide the DOM element that Facebook adds.

.fb_edge_widget_with_comment span.fb_edge_comment_widget {
display: none !important;}
share|improve this answer
1  
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 20:46

I didn't have success with the above approach. What worked for me was to create a container element with the exact dimensions of the facebook like button and set overflow="hidden" to the container. This worked perfectly for me.

share|improve this answer
For the reference, mine is 73px wide and 21px in height. – s3v3n Nov 20 '12 at 1:00
.fb_edge_widget_with_comment iframe { height: 20px !important; overflow: hidden; }
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.