How can i use my own customized Sharethis image along with sharethis plugin in my website?

user1199059 picture user1199059 · Feb 9, 2012 · Viewed 7.7k times · Source

How can i use my own customized Sharethis image along with sharethis plugin in my website?

Is anything i can manually do in:-

<script type="text/javascript">var switchTo5x=true;</script><script type="text/javascript" src="http://localhost/website/js/share-this.js"></script>
<script type="text/javascript">stLight.options({publisher:'fbcd68c9-0a9c-4974-9ada-e106a30e9194'});</script>

I just want to change the basic green color Icon nothing else.

Answer

Alexander St&#248;ver picture Alexander Støver · Feb 9, 2012

This is already documented on the ShareThis site. Use the 'st_sharethis_custom' class on your link.

<span class="st_sharethis_custom">ShareThis</span>

Then specify a new icon to use with CSS.

.st_sharethis_custom{
    background: url("http://path/to/image/file") no-repeat scroll left top transparent;
    padding:0px 16px 0 0;
}