Skip to content

Instantly share code, notes, and snippets.

@quasel
Forked from paullacey78/move-wpadmin-bar-bottom.css
Created December 18, 2017 08:37
Show Gist options
  • Save quasel/c8fc3bf3c78dc77b0acfca06ad718b5a to your computer and use it in GitHub Desktop.
Save quasel/c8fc3bf3c78dc77b0acfca06ad718b5a to your computer and use it in GitHub Desktop.
/* Move the wp-admin bar to the bottom */
#wpadminbar {
bottom: 0;
position: fixed;
top: initial;
}
body.logged-in.admin-bar {
margin-top: -32px;
}
@media(max-width:782px) {
body.logged-in.admin-bar {
margin-top: -46px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment