I'm using a zen subtheme with Drupal 5.7.
I would like a white font for the links in the nav bar, and a black font for the links elsewhere on the site.

After playing with Firebug, the only place I have managed to change the links color is with

  a:link
  {
color:black;

  }

in html-elements css line 195.

This changes all the links to black, but I'd like to change the navbar links to white.

Comments

mcrickman’s picture

Is it the primary nav?
Try this css:

#primary a {
    color: #fff;
}
gordonbooker’s picture

Thanks very much for the speedy reply - I put your code in a number of places - it didn't work, (I may have messed things up a bit through newbie css experimentalism) but it inspired me to try:

   #navbar a {
    color: #fff;
}

which did !
Thanks for the help - much appreciated.