I am trying to integrate facebook's share button into my page. I am using the following code:
<a name="fb_share"></a>
<script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share"
type="text/javascript">
</script>
This generates the image and the code for sharing. However I'm trying to use my own image for the share button. I am using the following code:
<a name="fb_share"><img src="fb.png" /></a>
<script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share"
type="text/javascript">
</script>
where fb.png is a custom image with the FB logo.
The problem is that my image shows along with the generic Facebook share image to the left... Do you know if there's a way to implement a custom image for the share button?
Thanks in advance!!