更改socialstatistics-widget上的链接颜色

时间:2011-08-08 12:55:08

标签: javascript google-plus

我已在Tumblr博客上实现了小部件,并尝试更改小部件中的链接蓝色但到目前为止没有运气。这是他们促成的代码:

链接到博客:http://eduardo-mateos.tumblr.com/

<div class="socialstatistics-widget" data-id="xxxxxxxxxx"></div><script>(function(d,t){var b=d.createElement(t),c=d.getElementsByTagName(t)[0];b.async=b.src="http://socialstatistics.com/widget/widget.min.js";c.parentNode.insertBefore(b,c);})(document,'script');</script>

2 个答案:

答案 0 :(得分:0)

尝试插入类似

的内容
.socialstatistics-widget a {
 color:#FF0000 !important;
}

在CSS文件或样式标记中,其中FF0000是您的自定义颜色。

答案 1 :(得分:0)

#socialstatisticswidget a:link, .socialstatisticswidgetrow a:link, #socialstatisticswidget a:visited, .socialstatisticswidgetrow a:visited, #socialstatisticswidget a:active, .socialstatisticswidgetrow a:active {
    color: #FF0000 !important;
}

那个人应该工作。我在小部件中找到了它,你应该在你的文件中重写这个css。