CSS更改标签的字体颜色(在span.text-inner之前和之后)

时间:2017-08-13 00:56:34

标签: javascript jquery css wordpress

需要帮助将自定义字体颜色添加到CSS中的表单标签到WordPress网站。我尝试使用大多数selectors添加新风格并且还没有获得成功,似乎有些事情会超越它。网站:reliableconcreting.com.au

See screenshot

When changing the color as per answers below it turns orange

在浏览器中工作而不是在子css表中:

body[data-form-style="minimal"] .minimal-form-input label span.text .text-inner     {
    color: #000000!important;
    display: inline-block;
}

2 个答案:

答案 0 :(得分:0)

您可以在颜色声明后使用!important来覆盖任何默认颜色。

.text-inner {
     color: "yourColor" !important;
}

答案 1 :(得分:0)

重要声明将使用正常声明覆盖作者规则。

p{
color: red !important;
}
p{
color: blue;
}
<p>This is some text.</p>

即使我在第一个重要规则加权后再编写一条新规则,并将其作为首选。