Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

facebook like button larger size

Tags:

facebook

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

thanks.

like image 295
prostock Avatar asked Oct 14 '10 22:10

prostock


People also ask

How do I change the like button on Facebook?

To access the new options on the Web version, hold your mouse over the "like" button for a second or two. On the mobile version, hold your finger on the "like" button for a second or two. You will then see the new options pop up in the form of six different options: "like," "love," ''haha," ''wow," ''sad" and "angry."

Why is the like button on Facebook different?

"We are removing Likes and focusing on Followers to simplify the way people connect with their favorite Pages. Unlike Likes, Followers of a Page represent the people who can receive updates from Pages, which helps give public figures a stronger indication of their fan base," said Facebook in a blog post.


1 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;
}
like image 50
Ben Avatar answered Oct 03 '22 13:10

Ben