Skip to content

Instantly share code, notes, and snippets.

@joshuacharleslake
Created July 29, 2015 09:32
Show Gist options
  • Save joshuacharleslake/7f02988bee9939272c3a to your computer and use it in GitHub Desktop.
Save joshuacharleslake/7f02988bee9939272c3a to your computer and use it in GitHub Desktop.
Wordpress Dropdown Menu CSS
.menu-header-menu-container li,
div.menu li {
float: left;
position: relative;
}
.menu-header-menu-container ul ul {
display: none;
position: absolute;
top: 38px;
left: 0;
float: left;
width: 180px;
z-index: 99999;
}
.menu-header-menu-container ul ul li {
width:200px;
}
.menu-header-menu-container ul li:hover > ul {
display: block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment