I need to change color of text in one header menu
-
I create a mega menu for categories, but i need to change color of text in normal state and hover too but if i change in css, change too all mega menu color.
Can you say me how do that, in the image i show you what menu is, I create a menu with only one button and plce html block to simulate category module but now i want to change background color and text color to white in normal state and hover too
Hello,
You can define your custom class in the html block row which contains your menu then you can hit that class to change the menu color and hover color or also the background color. In this way it will not affect all the other menus.
If you did not know how to define a class and how to write the custom CSS class. Then just share your admin login credentials and share a screenshot of that menu which you want to customize. Also let me know the color name for menu item and the color for the hover state. I will do it for you.
Best Regards.
ok i send you image with the changes. I place my login and password in private content
Attachments:
You must be
logged in to view attached files.
Hello,
I define custom CSS class in your menu item and then use the below CSS code in global custom CSS area under theme settings >> custom CSS:
.customBg, .customBg .sub-menu-dropdown{
background: #008895;
}
.customBg a .nav-link-text{
color:white;
}
Result: https://jmp.sh/TIdOgX6
Best Regards.