bishawjit-das
11/6/2015 - 7:51 PM

Getting Sticky Headers and the WordPress Admin Bar to Behave

Getting Sticky Headers and the WordPress Admin Bar to Behave

// Mobile first approch
.admin-bar .sticky-header {
  top: 46px;
}
@media screen and (min-width: 783px) {
  .admin-bar .sticky-header {
    top: 32px;
  }
}


// Desktop first approch
.admin-bar .sticky-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .sticky-header {
    top: 46px;
  }
}