最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

programmeradmin2浏览0评论

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.

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.

Share Improve this question asked Feb 9, 2012 at 8:46 user1199059user1199059
Add a ment  | 

2 Answers 2

Reset to default 7

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;
}

change the properties of this class:-

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

Change CSS like this:-

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

Also you can edit the img PNG directly from the Share This JS file:-

Search for:-

style.backgroundImage

replace the image location to your custom location.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论