Tagged: menu-item
Hey!
I would like to different underline color for each menu item.
The hover it’s okay, but how can I do same color for the current menu item?
.av-main-nav #menu-item-17:hover .avia-menu-fx {
background-color: #f7786b !important;
}
.av-main-nav #menu-item-18:hover .avia-menu-fx {
background-color: #91A8d0 !important;
}
.current-menu-item #menu-item-17 > a > .avia-menu-fx {
background-color: #f7786b !important;
}
.current-menu-item #menu-item-18 > a > .avia-menu-fx {
background-color: #91A8d0 !important;
}
Thank you :)
Best regards,
Peter
Hi Peter,
Not sure it will work but you could try something like this instead:
#menu-item-17.current-menu-item a span.avia-menu-text {
YOUR CSS
}
Thanks,
Rikard
Yes, it’s work! :) Thank you! :)
#menu-item-17.current-menu-item a span.avia-menu-fx {
background-color: #f7786b !important;
}