嗨,我正在尝试在这里创建一个 joomla 站点,只有一个问题我似乎无法弄清楚。我的活动链接的颜色没有改变,它有一个图像和一个颜色,图像应该是正确的,但是颜色没有改变。任何人的想法?这是CSS:
a {
color: #ffffff;
text-decoration: none;
}
a:link, a:visited {color: #ffffff; text-decoration: none;}
a:focus, a:hover {
color: #e2231a;
text-decoration: none;
}
#links li.active {
color: #e2231a;
text-decoration: none;
background: url("../images/hover.png") bottom center no-repeat;
padding-bottom: 17px;
}
我知道主动语句看起来与其他语句不同,但这是让我的图像显示的唯一方法。真的卡在这个了。。