Links are not displaying proplerly in Netscape 7

liunx

Guest
No messageGaithersburg huh? Crazy... I was down there from Utah selling pesticides for Orkin summer before last. Small world.

In any event, if you're trying to remove the underlines from your anchors, use text-decoration: none. Thus, code becomes:

A {
text-decoration : none;
color : #0000cc;
}

A:hover {
color : #0000cc;
background : #ffffff;
text-decoration : none;
}

A:visited {
color : #800080;
text-decoration : none;
font-size : small;
font-family : "times new roman", serif;
}

Good luck :) You also might want to fix the font-size : small by either adding it to the other anchor psuedoclasses, or taking it out of the visisted one.No message
 
Back
Top