Anyone know why opera is showing red instead of blue.
I have a CSS file containing the following
IE, FF, NS all show any hyperlinks on the page correctly in blue(000066) and white when hover. but Opera shows them as red and any visited links as a diferent red.
why is this hapening?
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.
I have a CSS file containing the following
Code:
a:link {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #000066;
text-decoration: none;
}
a:active {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #FFFFFF;
text-decoration: none;
}
a:visited {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #000066;
text-decoration: none;
}
a:hover {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #FFFFFF;
text-decoration: underline;
}
why is this hapening?
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.