Hi
I am trying to change the link color of the fonts in the navigation of this skin. In the additional CSS:
Code:
nvlink {
font:bold 11px Tahoma;
font-color:#FFFFFF;
text-decoration:none;
width:auto;
}
.nvlink a {
font-color:#FFFFFF;
text-decoration:none;
margin-right:20px;
}
.nvlink a:visited {
font-color:#FFFFFF;
text-decoration:none;
margin-right:20px;
}
.nvlink a:hover{
font-color:#CCCCCC;
text-decoration:underline;
}
Only the hover color works though. Is there something I am doing wrong here?