hi,,, Is there any way to set visited link color for a specific link and a different one for others? Really having a tough time with this in my current project. Thanks,
sure there is, add a class to the link you want to set the specific visited color for and then add the visited css e.g: <a class='foo' href=''>BAR</a> HTML: .foo:visited {color:white;} HTML:
For manual coding: a{color: #ffcc00;} a:visited{color: #66aa00;} a:hover{color: #ff9900;} This is just a sample BTW