Change Text Color of the header
-
How can I change the color of the text color of the header? The position where I want to change the Font Color is marked on the image below.
Thanks
Attachments:
You must be
logged in to view attached files.
Hi,
You can change this color in Theme Settings -> Styles & Colors.
Regards
I tried all the settings in theme>styles and color but no settings change the font color of the browse category as I want. Can u be more specific which settings should I change.
Hello,
Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.
.header-categories .menu-opener {
color: rgba(0,0,0,.9);
}
.mega-navigation .menu>li>a,
.widget_nav_mega_menu .menu>li>a {
color: rgba(0,0,0,.9);
}
.mega-navigation .menu>li.menu-item-has-children>a:after,
.widget_nav_mega_menu .menu>li.menu-item-has-children>a:after {
color: rgba(0,0,0,.9);
}
Regards