我试图改变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
答案 0 :(得分:1)
去检查这些风格:
.nivo-controlNav a h1 {
color: #E4007B;
font: bold 15px/20px Arial;
text-transform: none;
}
并在以下后添加:
.nivo-controlNav a.active h1 {
color: #000;
}
这应该有用。