Home Forums WoodMart support forum Change Color on the Category menu Reply To: Change Color on the Category menu

#242035

Hello,

Please add this code to the Theme Settings > Custom CSS > Global:

body .page-title-default {
    background-color: red;
}

If you need to change the color of the categories, use this custom:

body .color-scheme-light .category-nav-link:hover,
body .color-scheme-light .category-nav-link{
    color: yellow;
}
body .category-nav-link .category-name:after{	
    background-color: yellow;
}

Set the color as per your needs.

Best Regards