Hi, Ken --
> I can't get (most of) my CSS working in Netscape 4.x. For example, I
> have
>
> a.link {
> text-decoration: none;
> }
Assuming that's supposed to be a:link (a psuedo-class) and not class
called "a", check the order of your a:* psuedo-classes. The best order
seems to be:
a:link
a:visited
a:hover
a:active
David