Skip to content

Instantly share code, notes, and snippets.

@agusmu
Created July 13, 2013 07:12
Show Gist options
  • Save agusmu/5989753 to your computer and use it in GitHub Desktop.
Save agusmu/5989753 to your computer and use it in GitHub Desktop.
PrimaShop - underline top navigation and header menu on mouseover
/* show underline for top navigation menu on hover state */
#topnav ul.topnav-menu a:hover {
text-decoration: underline;
}
/* show underline for header menu on hover state */
#header-menu .menu-primary a:hover {
text-decoration: underline;
}
/* hide underline for header submenu on hover state */
#header-menu .menu-primary li li a:hover {
text-decoration: none;
}
/* show underline for current header menu item */
#header-menu .menu-primary li.current-menu-item a, #header-menu .menu-primary li.current-menu-item a:visited {
text-decoration: underline;
}
@agusmu
Copy link
Author

agusmu commented Sep 28, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment