Created
October 16, 2014 21:19
-
-
Save 9ete/f7280bfa1a6f98f81a44 to your computer and use it in GitHub Desktop.
CSS move WordPress admin bar to bottom on front end
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
body.admin-bar { | |
margin-top: -28px; | |
padding-bottom: 28px; | |
} | |
#wpadminbar { | |
top: auto !important; | |
bottom: 0; | |
} | |
#wpadminbar .quicklinks>ul>li { | |
position:relative; | |
} | |
#wpadminbar .ab-top-menu>.menupop>.ab-sub-wrapper { | |
bottom:28px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment