Home Forums WoodMart support forum Change color of a single menu item (example) Reply To: Change color of a single menu item (example)

#146038

Hello,

You can change a single menu item color to red by declaring your custom class in that specific menu item. And then assign red color to that class which is used inside that menu item.

You can check the below screenshot where I declared “customColor” class for “test” menu item.
https://jmp.sh/4lnsvNN

After declaring the css class. You have to use the below css in your Theme Setting >> Custom Css >> Global Custom CSS:

.customColor span{
color:red !important;
}
.customColor .woodmart-nav-link span.nav-link-text{
color:red !important;
}

Screenshot: https://jmp.sh/y9WEbAA

Result: https://jmp.sh/UKuY9TV

Best Regards.