Looking at your page, the main issue actually isn't with the drop down links' colors. I think I answered this in another thread, but first and foremost you should remove the below DIV from your page's source:
Code:
<div id="dropmenudiv">
Since it's already being dynamically generated by the script, and having two creates serious problems. Once removed, the other main problem is actually the CSS for your site's layout- it's extremely buggy, and content disappear if not placed in the exact right position within the page's source. I tried moving the menu anchor links around:
Code:
<a href="http://dev.coeur.asso.fr/index.html">ACCUEIL</a> |
<a href="http://dev.coeur.asso.fr/index.html" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu2, '150px', true)"
onMouseout="delayhidemenu()">EAU</a> |
<a href="http://dev.coeur.asso.fr/index.html" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu3, '250px', true)"
onMouseout="delayhidemenu()">SEDIMENTS</a> |
<a href="http://dev.coeur.asso.fr/index.html" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu4, '250px', true)"
onMouseout="delayhidemenu()">FAUNE ET FLORE</a> |
<a href="http://dev.coeur.asso.fr/index.html" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu5, '250px', true)"
onMouseout="delayhidemenu()">PATRIMOINE</a> |
<a href="http://dev.coeur.asso.fr/index.html" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu6, '270px', true)"
onMouseout="delayhidemenu()">PROJET PNR</a>
and in most cases, they disappear completely from the page (not normal). I'm not sure if you coded the CSS for the layout yourself, but there are a few serious issues as far as I can tell, the least of which are the drop down menu's link colors.
Bookmarks