imprintableswarehouse wrote:Is there a way to change the highlight (hover) color of the subcategories in the unlimited subcategories version of the 3.2 Mega Menu?
This was the ".mega-menu .box li a:hover {" in the previous Mega Menu version.
Hi,
You can change the hover color as you wish. The styles for the infinite subcategories list are placed in the Themes\Electronics\Content\CSS\styles.css because these styles are used for both the infinite subcategories template of the Nop Mega Menu plugin and the default nopCommerce's top menu.
So in order to change the link color on hover you need to edit the following styles:
.header-menu .sublist li:hover {
background: rgba(0,0,0,0.05);
}
.header-menu .sublist li:hover > a {
color: #000;
text-decoration: none;
}
Hope that helps!