paullacey78
12/17/2017 - 10:22 PM

Move WP admin bar to the bottom

/* 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;
    }
}