Viewing 2 reply threads
You must be logged in to reply to this topic.
Hello how can I change the color of the line in menu style and color of hover text in menu?
Hello,
The color of menu items on hover, and that of the underline as well are taken from theme’s primary color. If you want to keep the current primary color selected and change only the menu color then you will need to use custom css.
Try this code:
.header_container.menu-full-style #navigation nav > ul > li > a:hover {
color: #337ab7;
}
.header_container.menu_style-border_effect_two #navigation nav > ul > li > a:hover:after {
background-color: #337ab7;
}
Add it into Customize > General > Custom Codes > Custom Css. Cahnge the color value to your wish.
Let us know.
Best regards!
Yeah I knew that but I wanted to be sure if this theme got options.Its better to use options if it has than to write custom css.Thank you however I did it on css :)
You must be logged in to reply to this topic.