Hey JochenS, I have to say, your the fastest poster of replies I've ever encountered! You need a raise my man.
The line that is controlling the color of the nav menu links is within the "basic styles" section of the styles.css, lines 93-94 which read
- Code: Select all
a:hover {
color: #036; }
Further into the css there is a section for "navigation", this is where i changed the background of my nav menu and also the hover over image (hence why i don't need the color of the text to change). There is a line (197-198) that reads
- Code: Select all
nav ul li a:hover {
background: url(../images/bg_menu.gif); /*color: #4A9400; */}
I was hoping I could specific the font color here, but when I do, nothing changes with my nav menu links, they still change to the color listed on lines 93-94.
If you'd like to take a look to see what I'm referring too, my faq is currently available at
http://www.geekmonkey.ca/faq. You'll notice, when you hover over the nav menu links, the background that I've linked shows, but the color of the text also changes to #036. This is the same behavior as all links on the page.
Any ideas?