Andrew is referring to an add-on for the FireFox browser which will allow you to see what controls what colors. There's also the web developer add-on (which I use) which I believe does some of the same things.
Add this to your stylesheet (adjust the colors according to your needs):
Code:
#navColumnOneWrapper a:link, #navColumnTwo a:link {
color: #FFFFFF;
text-decoration: none;
}
#navColumnOneWrapper a:visited, #navColumnTwoWrapper a:visited {
color: #FFFFFF;
text-decoration: none;
}
#navColumnOneWrapper a:hover, #navColumnTwoWrapper a:hover {
color: #FF0000;
text-decoration: none;
}
You could even separate #navColumnOneWrapper from #navColumnTwoWrapper and have different colors for each.