Click to See Complete Forum and Search --> : Links are not displaying proplerly in Netscape 7


design
12-09-2003, 01:54 AM
No message

terov
12-09-2003, 02:26 AM
Gaithersburg 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.

design
12-09-2003, 11:36 AM
No message