bigperm
June 2nd, 2001, 17:12
I want to have the links on my navbar get their style from a different class than the main ones for all the other links, so I have this in my stylesheet:
A:link.nav {
color: white;
background-color: navy;
font-family: verdana;
font-size: 10pt;
text-decoration: none}
A:hover.nav {
color: navy;
background-color: grey;
font-family: verdana;
font-size: 10pt;
color: red;
text-decoration: underline}
A:visited.nav {
color: grey;
background-color: lightblue;
font-family: verdana;
font-size: 10pt;
text-decoration: none}
A:active.nav {
color: grey;
background-color: navy;
font-family: verdana;
font-size: 10pt;
text-decoration: none}
That is for my nav links. But for some reason, only the first one (a:link.nav) get used, and all the other ones are from the styles from the main links. The code for the main link is:
A:link {
color: #ff7d00;
text-decoration: none}
A:visited {
color: red;
text-decoration: none}
A:active {
color: yellow;
text-decoration: none}
A:hover {
color: red;
text-decoration: underline}
Anybody know why this is? Or how to fix this?
You can see it at http://www.yupapa.com/~bigperm/test1.shtml
A:link.nav {
color: white;
background-color: navy;
font-family: verdana;
font-size: 10pt;
text-decoration: none}
A:hover.nav {
color: navy;
background-color: grey;
font-family: verdana;
font-size: 10pt;
color: red;
text-decoration: underline}
A:visited.nav {
color: grey;
background-color: lightblue;
font-family: verdana;
font-size: 10pt;
text-decoration: none}
A:active.nav {
color: grey;
background-color: navy;
font-family: verdana;
font-size: 10pt;
text-decoration: none}
That is for my nav links. But for some reason, only the first one (a:link.nav) get used, and all the other ones are from the styles from the main links. The code for the main link is:
A:link {
color: #ff7d00;
text-decoration: none}
A:visited {
color: red;
text-decoration: none}
A:active {
color: yellow;
text-decoration: none}
A:hover {
color: red;
text-decoration: underline}
Anybody know why this is? Or how to fix this?
You can see it at http://www.yupapa.com/~bigperm/test1.shtml