On screens 980px - 1199px, the navigation bar is below the logo. I added the code below but it did not completely fix the problem. Please point me in the right direction.
@media (max-width: 1199px) {
.masthead-inline .x-btn-navbar {
display: block;
float: right;
}
.x-nav-wrap.desktop {
display: none;
}
.x-nav-wrap.mobile {
display: block;
}
.x-nav-wrap.mobile.x-collapsed {
display: none;
}
}