change text hover color main menu

Posted in: Newspaper
Post count: 15

Hello,

In the main menu I want not set an ACTIVE & HOVER COLOR, but I want to set the TEXT HOVER COLOR. (this is also possible in the topmenu). How can I do this?

greetz, marcel

Post count: 20688

Hi,

Please specify what header style are you using, a screenshot or link and what exactly are you trying to achieve so i can provide a better solution for you.

Thanks

Post count: 15

It’s header style default,

see: https://postimg.org/image/8gpkx59pf/

greetz, marcel

Post count: 20688

Hi,

Enter this code in Theme panel->Custom Css (it works for the default non-modified header style 1 menu – removes the active menu item bottom border and sets a hover color for the menu text) but it would be much easier if you could provide a link so i can inspect your site

.td-header-style-1 .sf-menu > li > a:after {
height: 0;
}
.td-header-style-1 .sf-menu > li > a:hover {
color: #4db2ec;
}

Thanks

Post count: 15

Of course I can give you the link:
http://www.blindertest.nl/domains/blindertest/

(pasword: zon111)

Post count: 20688

Hi,

This code will make the menu text colored on hover, enter it in Theme panel->Custom Css (you can set a color name or hex of your choosing)

.td-header-style-1 .sf-menu > li > a:hover {
color: #4db2ec;
}

This code is for an active menu (the one you are on) enter it only if you want

.current-menu-item a {
color: #4db2ec!important;
}

Please tell me if this ok for you
Thanks

Post count: 15

It Works Simion, thx!

Viewing 7 posts - 1 through 7 (of 7 total)
The forum ‘Newspaper’ is closed to new topics and replies.