Hmmm… need to make some modifications for the changing height of the Top Bar and the Admin bar:
Replace this:
.admin-bar .above-header-bar {
top: 32px;
}
with:
@media(min-width: 783px) {
.admin-bar .above-header-bar {
top: 32px;
}
}
@media(max-width: 782px) and (min-width: 600px) {
.admin-bar .above-header-bar {
top: 46px;
}
}
And this CSS:
.sticky-enabled .main-navigation.is_stuck {
top: 40px !important;
}
replace with:
.sticky-enabled .main-navigation.is_stuck {
top: 40px !important;
}
@media(max-width: 529px) {
.sticky-enabled .main-navigation.is_stuck {
top: 64px !important;
}
}