Quoting MJ Ray mjr@phonecoop.coop:
Can't debug that without seeing the stylesheet. It sounds like one selector is overriding another. If you can't publish the stylesheet, the validator at http://jigsaw.w3.org/css-validator/ or the spec at http://www.w3.org/TR/REC-CSS2/ might help.
OK. No doubt I am opening myself up to get slaughtered for my dreadful code!! This is the bit that sets out the anchor properties:
a { color:#09c; font-size:11px; text-decoration:none; font-weight:600; font-family:verdana, arial, helvetica, sans-serif; }
a:link {color:#09c;} a:visited {color:#07a;} a:hover {background-color:#09c; color:#ffe;}
And then the header section is set up as:
#Header {
margin:5px 0px 10px 0px; padding:17px 0px 0px 20px; height:33px; /* 14px 17px 2px = 33px */ border-style:solid; border-color:black; border-width:1px 0px; line-height:11px; background-color:#ffe;
This comes AFTER the anchor stuff above in the stylesheet, if that makes a difference.
So, I think I need something inside the #Header part setting out how the anchors appear. I think.