I have a style sheet that declares the link colors globally as:
a:link, a:visited {color:blue;}
I have a div where I want the link color to be gray.
.divMenu a:link, a:visited {color:gray;}
This doesn't work. The links in the menubar still show up as blue.
There's something I don't get here.