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 want to add the Facebook LIKE button to a page on a website. There are a couple of points:-

  1. The webpage has an image background so I want the background to the LIKE button to be transparent. The basic tool on face book to create the button only allows a dark or light background. How can I change that?
  2. The webpage has a number of news items and I want to use the LIKE button after each news item so only that item appears on the users FB page. Am I simply able to adjust the URL in the code that the FB tool returns?
share|improve this question

2 Answers

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>
share|improve this answer
FYI, sharer.php is being deprecated – DMCS Jan 26 '12 at 12:04
thanks for the heads up – Dan Kanze Jan 26 '12 at 12:06

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.

share|improve this answer
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 21:52

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.