Menu .nav question
-
My website: https://0thmirageknight.com/
I am trying to have the menu display an overline when I hover over it, but at the same time, I do not want the overline to disappear when my mouse hovers over a submenu. This is my code right now:
/*overline over the menu when hovering*/
.nav ul li a.hover,
.nav ul li a:hover {
text-decoration:overline;
}/*prevents submenu from having overline when hovering over menu*/
.nav ul ul li a.hover,
.nav ul ul li a:hover {
text-decoration:none;
}/*overline for menu when hovering over submenu? does not work!*/
.nav ul ul li a.hover,
.nav ul li a:hover {
text-decoration:overline;
}Please advise, thank you!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Menu .nav question’ is closed to new replies.