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