Hi Rob Genovesi,
You can set the opacity as 1 or remove the opacity of dropdown background by opening the megamenu-components.css file in "your_site/modules/mod_ytmegamenu/menusys/class/common/css", finding:
ul.navi div.mega-content-inner {
background: none repeat scroll 0 0 orange;
display: block;
float: left;
opacity: 0.8;
padding: 0;
width: 100%;
}
change to
ul.navi div.mega-content-inner {
background: none repeat scroll 0 0 orange;
display: block;
float: left;
opacity: 1;
padding: 0;
width: 100%;
}
------
You can also set the color of title of sub-menu items by opening the menustyle.css file in "your_site/modules/mod_ytmegamenu/menusys/class/common/css", finding:
ul.navi div.separator.level2, ul.navi a.level2 {
background: none repeat scroll 0 0 transparent;
color: #0B4666;
font-family: Verdana;
font-size: 12px;
margin: 0;
padding: 0 10px;
text-transform: uppercase;
}
change to
ul.navi div.separator.level2, ul.navi a.level2 {
background: none repeat scroll 0 0 transparent;
color: your_color;
font-family: Verdana;
font-size: 12px;
margin: 0;
padding: 0 10px;
text-transform: uppercase;
}
Thanks