Reputation: 11
I want to add the Facebook LIKE button to a page on a website. There are a couple of points:-
Upvotes: 0
Views: 354
Reputation: 31860
Styling of the like button was intentionally removed by Facebook and they give us limited availability to change it (just lite/dark). See this post: http://forum.developers.facebook.net/viewtopic.php?pid=236534
And if you use the way back machine, you can see how you used to be able to style the button by adding the css parameter.
Upvotes: 0
Reputation: 18595
The "Like" button has limited options for styling according to this thread:
Custom skin for facebook like button
This will achieve what you are trying to do using a "Share" button:
<a type="button" href="http://www.facebook.com/sharer/sharer.php?u=http://mywebsite.com">
<img style="cursor:pointer" src="/images/customfacebookpic.png" />
</a>
Upvotes: 0