Skip to content

Instantly share code, notes, and snippets.

@mpukit
Last active August 29, 2015 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mpukit/dc3709fc34b7d6353624 to your computer and use it in GitHub Desktop.
Save mpukit/dc3709fc34b7d6353624 to your computer and use it in GitHub Desktop.
A fix for the Wordpress admin bar overlaying your theme
@mixin wp-admin-bumper {
min-height: 46px; // height of mobile wp-admin bar in WP 4.0
@media screen and (min-width: 782px;) {
min-height: 32px; // standard height of wp-admin bar in WP 4.0
}
}
.wp-admin-bump {
@include wp-admin-bumper;
}
<!-- Place inside the nav -->
<?php if ( is_admin_bar_showing() ) echo '<div class"wp-admin-bump"></div>'; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment