Home Forums WoodMart support forum Subcategories font color Reply To: Subcategories font color

#51953

Hello,

Try this code, add it in to Theme Setting > Custom CSS > Desktop

Subcategories font and background:


/*initial*/
.menu-simple-dropdown ul li a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #494949;
    background: #000000;
}

/*on hover*/
.menu-simple-dropdown ul li a:hover {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #494949;
    background: #000000;
}

For Categories background:

/*initial*/
.header-categories-nav .categories-menu-dropdown .item-level-0>a {
    background: #000000;
}
/*on hover*/
.header-categories-nav .categories-menu-dropdown .item-level-0>a:hover {
    background: #000000;
}

Replace #000000 for your color.

Best Regards