is there anyway to increase the size of the fb like plugin?
thanks.
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."
"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.
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;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With