Created
January 21, 2018 13:57
-
-
Save RhythmShahriar/e124c0cd3f13633ead1b60b25650a701 to your computer and use it in GitHub Desktop.
Rogue Framework Fixed Navbar
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
| /*** ADMIN BAR FIX ***/ | |
| #wpadminbar{ | |
| z-index: 999999999999; | |
| } | |
| body.admin-bar #navbar{ | |
| margin-top: 32px; | |
| } | |
| /* icon based admin bar 781px */ | |
| @media only screen and (max-width: 781px) { | |
| body.admin-bar #navbar{ | |
| margin-top: 46px; | |
| } | |
| } | |
| /* absolute admin bar 600px */ | |
| @media only screen and (max-width: 600px) { | |
| body.admin-bar #navbar{ | |
| position: absolute; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment