Last active
October 18, 2016 16:23
-
-
Save SeanChDavis/060b33a167df4adecb4ef87130caa558 to your computer and use it in GitHub Desktop.
Volatyl Header Menu Support Unlimited Dropdowns
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .header-navigation .menu li:hover > ul, | |
| .header-navigation .menu li:hover ul li a { | |
| display: block; | |
| } | |
| .header-navigation .menu li ul li ul { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| margin: 0; | |
| } | |
| .header-navigation .menu li:hover ul li:hover ul { | |
| left: 201px; | |
| } | |
| .header-navigation .menu li ul a { | |
| width: 180px; | |
| } | |
| @media screen and (max-width: 768px) { | |
| .header-navigation .menu li ul li ul, | |
| .secondary-navigation .menu li ul li ul { | |
| position: static; | |
| text-align: center; | |
| padding: 0; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment