Hi There,
Sorry, but there is no way around this because of the length of your inline-navigation, we need to hide the inline-navigation container and show the mobile menu container sooner.
First, please remove all the Hide During Breakpoints option you applied on the Containers. Then add this to Theme Options > CSS
/*hide in 1321px and above*/
@media (min-width: 1321px) {
.hide-above-1321px {
display: none !important;
}
}
/*hide in 1320px and below*/
@media (max-width: 1320px) {
.hide-below-1320px {
display: none !important;
}
}
Apply the CLASS hide-above-1321px on mobile menu and CLASS hide-below-1320px on inline-navigation.
Thanks,