I might be mistaken but if I use the following CSS then should the link to the page that is open should be a different color. This is not the case. Can anyone tell me why? Thanks in advance.
A.navLink:link {
color:#FF7D00;
font-weight: bold;
text-decoration: none;
}
A.navLink:visited {
color:#FF7D00;
font-weight: bold;
text-decoration: none;
}
A.navLink:hover {
color:#336699;
font-weight: bold;
text-decoration: none;
}
A.navLink:active {
color:#FF9900;
font-weight: bold;
text-decoration: none;
}
************
My purpose in life is to show others what not to do.
<!--Caution, dates on calendar are closer then they appear.-->
A.navLink:link {
color:#FF7D00;
font-weight: bold;
text-decoration: none;
}
A.navLink:visited {
color:#FF7D00;
font-weight: bold;
text-decoration: none;
}
A.navLink:hover {
color:#336699;
font-weight: bold;
text-decoration: none;
}
A.navLink:active {
color:#FF9900;
font-weight: bold;
text-decoration: none;
}
************
My purpose in life is to show others what not to do.
<!--Caution, dates on calendar are closer then they appear.-->