I'm having trouble getting a:link to work. The strange thing is I uploaded the exact same HTML page to another website I host and own, and the a:link works fine on that website.
My a:hover is working fine, but with a:link I'm still getting the underline under my links and the color is the default link color...
I'm pulling out my hair trying to figure out what I'm doing wrong.
I'm using dreamweaver. Usually when i'm having trouble getting something to work I create a sort of "test" page, which just helps me see exactly what I'm doing by getting rid of the code that's working fine. Usually this helps me figure things out, but it's been about two hours and I'm still at square one.
the link is: http://keretweiss.com/testslideshowpage/hovertest.html
and the link to the one that's working is: http://studiosilhouettes.com/hovertest.html
the codes are identical.
here's the exact code (css and html):
Untitled Document
a:link {
color: #0D0;
text-decoration: none;
}
a:hover {
color:#C0F;
text-decoration:none;
}
.test {
text-decoration:none;
color: #9C0;
Thanks so much for any help!!!!
KerMT is online now Add to KerMT's Reputation Report Post Edit/Delete Message Reply With Quote Multi-Quote This Message Quick reply to this message
resolved
Figured it out. I just needed to add an a:visit compound to my CSS. Obviously since I've already visited the link, it was showing up as the default visited link. Stupid mistake.