Last active
April 14, 2020 07:39
-
-
Save generatepress/d57105c71e6b1b285a40 to your computer and use it in GitHub Desktop.
Show full menu on mobile and tablets
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
@media (max-width: 769px) { | |
.menu-toggle, | |
.main-navigation.toggled .main-nav > ul { | |
display: none !important; | |
} | |
.main-navigation ul, | |
.main-navigation ul li:hover > ul, | |
.sf-menu li:hover > ul, .sf-menu li.sfHover > ul { | |
display: block; | |
} | |
.main-nav .sf-menu > li { | |
float: left; | |
clear: none; | |
} | |
.nav-aligned-center.nav-below-header .main-navigation .menu > li, | |
.nav-aligned-center.nav-below-header .main-navigation .sf-menu > li { | |
display: inline-block; | |
} | |
.main-navigation .main-nav ul ul { | |
display: none; | |
float: left; | |
position: absolute; | |
top: auto; | |
left: 0; | |
z-index: 99999; | |
width:200px; | |
text-align:left; | |
} | |
.main-navigation .main-nav ul ul ul { | |
left: 100%; | |
top: 0; | |
} | |
.mobile-bar-items { | |
display: none; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment