1

我正在尝试仅更改 Nivo 滑块上活动选项卡的字体颜色。

在此处输入图像描述

我已经尝试过了,但是它不起作用;

.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

4

1 回答 1

1

去看看这些款式:

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

并在之后添加这些:

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

这应该有效。

于 2013-05-03T09:50:35.340 回答