Created
October 11, 2012 21:35
-
-
Save jlittlejohn/3875630 to your computer and use it in GitHub Desktop.
WP: Hide Admin Bar
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 TO HIDE DURING DEV | |
html { | |
margin-top: 0 !important; | |
} | |
#wpadminbar { | |
display: none; | |
} |
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 TO HIDE DURING DEV | |
html { | |
margin-top: 0 !important; | |
} | |
#wpadminbar { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment