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
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
Of course I can give you the link:
http://www.blindertest.nl/domains/blindertest/
(pasword: zon111)
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