Sometimes, clients want to have a custom "facebook button". I mean with a different image and design.
I used to work with sharer.php :
<a id="fb-share" style='text-decoration:none;' type="icon_link" onClick="window.open('http://www.facebook.com/sharer.php?s=100&p[title]=foo&p[summary]=bar&p[url]=https://www.foobar.com/&p[images][0]=https://www.foobar.com/thumb.gif','sharer','toolbar=0,status=0,width=580,height=325');" href="javascript: void(0)">
<img src="img/share.gif" width="62" height="18" alt="Share"/>
S</a>
But it seems it doesn't work very well since facebook has deprecated the Share button. Instead, we have to use the "like button".
So is it possible to have a custom like button with a custom image ?
I've seen on the facebook api page a generator to create the button but i would like to know if it is possible to have a custom button with a different image ?