Hi…the color is controled by an actual image rather than a hex code as you were probably looking for.
It’s located in ja.moomenu.css – line 1
#ja-cssmenu li ul {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:transparent url(../../images/trans-bg.png) repeat scroll 0 0;
border:1px solid #2D2D2D;
}
Just change the color of that 1 by 1 pixel image…and you’re good to go. Or else recode the background entirely using a hex code.
#ja-cssmenu li ul {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background: #ffffff none repeat scroll 0 0;
border:1px solid #2D2D2D;
}
That would give you a white background.
Have fun!
John.