Created
November 19, 2016 13:02
-
-
Save nickdavis/9636a96d8a3d82bba439ec7db6dab02f to your computer and use it in GitHub Desktop.
Always show expanded menu (and hide menu pulldown button) on larger screens in Remobile Pro theme by StudioPress (regular 'mobile' menu continues to work in correct way). As seen on GenesisWP.guide at the time of writing.
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
/* Responsive Menu | |
--------------------------------------------- */ | |
.responsive-menu { | |
display: block; /* Changed from default */ | |
} | |
.responsive-menu-icon { | |
cursor: pointer; | |
display: none; /* Changed from default */ | |
text-align: center; | |
} | |
@media only screen and (max-width: 800px) { | |
/* Other CSS rules */ | |
.responsive-menu-icon { | |
display: inline-block; | |
} | |
/* Other CSS rules */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment