Css on active menu

Hi,



I 'm trying to display a different font color on the active item of the Menu without success. How I can do that simply ?



Thanks


The simplest way - redefine it in css


dhtmlxmenu.css
.menuButtonover{

.menuButtonSecondover{



Thanks for your quick response as usual,



Actualy, I want want to change the color not on the mouseover mouseout but on the selected item of the Menu.



the idea is to keep track where the user is in the menu.



Thanks



 



 



 

When menu item selected - onClick event generated, you can attach some custom code to it, similar to next

menu.setOnClickHandler(function(id){
      menu.getItem(id).topNod.style= …
      menu.getItem(id).textTag.style= …
});