Hello,
my problem is I want to make all links in my navigation menu one color and rest of the links on the page another color. The code that I use for the links on my page is:
The code I have for my navigation menu is:
If I put color: #CCCCCC; inside the .nav class all it does is make the text that color not the links. I have ">>" seperating my links and those are the text that turn #CCCCCC and not the links themselves.
Any help greatly appretiated, thanx in advance!
my problem is I want to make all links in my navigation menu one color and rest of the links on the page another color. The code that I use for the links on my page is:
Code:
a:link, a:visited, a:hover, a:active {
text-decoration: none;
color: #3300CC;
}
The code I have for my navigation menu is:
Code:
.nav {
height: 1px;
background-color: #8B8970;
font-size: medium;
font-family: Georgia, serif;
text-align: left;
line-height: 1.3em;
}
If I put color: #CCCCCC; inside the .nav class all it does is make the text that color not the links. I have ">>" seperating my links and those are the text that turn #CCCCCC and not the links themselves.
Any help greatly appretiated, thanx in advance!