In my CSS, I have
However, the .nav's aren't working. What do I need to do to have the .nav anchors different than the regular anchors?
HTML:
A:link {
color: #530000;
font-weight: bold;
text-decoration: none;
}
A:active {
color: #530000;
font-weight: bold;
text-decoration: none;
}
A:visited {
color: #530000;
font-weight: bold;
text-decoration: none;
}
A:hover {
color: #9E0000;
font-weight: bold;
text-decoration: none;
}
.nav A:link {text-decoration: none; }
.nav A:active {text-decoration: none; }
.nav A:visited {text-decoration: none; }
.nav A:hover {
color: #9E0000;
font-weight: bold;
text-decoration: none;
}
However, the .nav's aren't working. What do I need to do to have the .nav anchors different than the regular anchors?




