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.

is there anyway to increase the size of the fb like plugin?

thanks.

share|improve this question
What have you tried? – NickLarsen Jun 1 '11 at 18:08

3 Answers

Yeah, target the iframe with CSS and scale it using CSS3. Something like this:

#fbiframe
{
transform: scale(2.5);
-ms-transform: scale(2.5); 
-webkit-transform: scale(2.5); 
-o-transform: scale(2.5); 
-moz-transform: scale(2.5); 
transform-origin: bottom left;
-ms-transform-origin: bottom left;
-webkit-transform-origin: bottom left;
-moz-transform-origin: bottom left;
-webkit-transform-origin: bottom left;
}
share|improve this answer

Nope, it comes as is. What's strange is that Google+ and Twitter allow you have have various sizes for their buttons.

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. Thank you! – DMCS Feb 4 '12 at 16:52

There's a workaround, but it goes against FB's policy of changing how their button looks. I imagine that you could probably create a bigger size FB like button and just use that...

http://www.esrun.co.uk/blog/disguising-a-facebook-like-link/

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.