在socialstatistics小部件上更改链接颜色

Changing link color on the socialstatistics-widget

本文关键字:链接 颜色 socialstatistics 小部      更新时间:2023-09-26

我已经在我的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>

尝试插入类似

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

,或者样式标签,其中FF0000是你的自定义颜色。

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

这个应该可以。我发现它就在小部件内部,你应该在你的文件中重写这个css。