我只想将它的颜色改为#DD4814,但我不能。这是一个“分享按钮”顺便说一句。 可能是什么原因?
<span class='st_sharethis' st_title='<?php the_title(); ?>' st_url='<?php the_permalink() ?>' displayText='Compartir'></span>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script><script type="text/javascript">stLight.options({publisher:'eb2f12b2-11c6-4013-bf2c-e42dcf3112f5'});</script>
答案 0 :(得分:3)
这对我有用:
.stButton .sharethis {color:#DD4814}
答案 1 :(得分:0)
当一个选择器优先于您正在使用的选择器时,通常样式将不起作用。这称为选择器特异性,有很多文档可以帮助您了解它的工作原理。
由于问题的性质,您可能还没有发布足够的代码来为您提供准确的答案。但是,请阅读此问题的答案:CSS problem - an element only works if its has no parent (using jquery)和http://htmldog.com/guides/cssadvanced/specificity/
要弄清楚如何应用问题的答案,请使用Firebug,右键单击元素,然后选择“Inspect Element”。在Firebug的右侧窗格中应该是样式选项卡,它将显示哪些CSS选择器应用于该元素。找到具有您无法覆盖的样式的那个,并确保您的选择器更具体。