2

我在我的网站上使用 addthis 按钮,我想做一些自定义样式...只是更改配色方案以匹配我的网站。可以做到吗?我有一些替换图像准备好所有正确的尺寸。我只是找不到把它们放在哪里!

<!-- AddThis Button BEGIN -->
    <div id="photo-social" class="addthis_toolbox addthis_default_style "
        <a class="addthisfacebook addthis_button_facebook_like" fb:like:layout="button_count" fb:like:width="50"></a>
        <a class="addthistweet addthis_button_tweet"></a>
        <a class="addthispinterest addthis_button_pinterest_pinit"></a>
        <a class="addthis_counter addthis_pill_style"></a>
    </div>
    <script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
    <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-50bd330b4fbbfeb2"></script>
    <!-- AddThis Button END -->

以前有没有人成功完成过这个?

4

3 回答 3

0

您可以为 AddThis 工具箱(加号按钮)使用自定义图像。你会做这样的事情:

<a class="addthis_button" href="http://www.addthis.com/bookmark.php">
    <img src="http://s7.addthis.com/static/btn/sm-plus.gif"
     width="16" height="16" border="0" alt="Share" />
</a>

完整的文档在这里:

http://support.addthis.com/customer/portal/articles/381236-custom-buttons#.UNDA5YnjmM9

不幸的是,您无法替换 Facebook Like、Tweet 等第三方按钮,因为这些按钮实际上是由 Facebook、Twitter 等提供的。只有 AddThis 提供的按钮(基本上是所有相同尺寸的按钮行)。我希望这是有道理的。

于 2012-12-18T19:20:10.420 回答
0
<a class="addthis_button_facebook">
    <img src="whatever.png" width="32" height="32" border="0" alt="facebook_share">
</a>

Addthis 仍然为 facebook 打开一个共享。

于 2017-01-13T13:27:47.480 回答
-1

您可以尝试使用 id-s 和类(addthis_button、photo-social、addthis_toolbox addthis_default_style 等)。在每个类中添加 backgorund-image css 属性。也许其中一个会起作用。祝你好运 :)

于 2013-03-01T19:47:16.240 回答