Opencart,Nivo滑块控件具有活动文本颜色

时间:2013-05-03 07:55:21

标签: opencart nivo-slider

我试图改变Nivo滑块上活动标签的字体颜色。

enter image description here

我试过这个但是,它没有用;

.nivo-controlNav a:hover, .nivo-controlNav a.active {
    background:url(../image/a_active.png) repeat-y 0px 50%;
    --> color:#000 !important;
}

我也尝试过;

.nivo-controlNav a.active {
     color:#000 !important;
}

我正在编辑的文件是slideshow.css

1 个答案:

答案 0 :(得分:1)

去检查这些风格:

.nivo-controlNav a h1 {
    color: #E4007B;
    font: bold 15px/20px Arial;
    text-transform: none;
}

并在以下后添加:

.nivo-controlNav a.active h1 {
    color: #000;
}

这应该有用。