Links colors are not changing :( [solved]
Posted: Sun Oct 28, 2007 11:33 pm
This is the code in my "Accessibility and cross-browser tools" css file:
And as you can see I'm using 0033FF (a darkish blue). But when I visit the page it shows a lighter blue instead 
My web site
What is the problem?
Thanks,
JDL
Code: Select all
/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link
a:active {
text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
background-color: inherit;
color: #0033FF;
}
a:visited {
text-decoration: underline;
background-color: inherit;
color: #0033FF; /* a different color can be used for visited links */
}
/* remove underline on hover and change color */
a:hover {
text-decoration: none;
background-color: #CCCCCC;
color: #0033FF;
}

My web site
What is the problem?
Thanks,
JDL