Hi Kim,
Thank you for reaching out to us. You can enable the mobile navigation before the navigation items drops to the next line. This would require custom CSS as this is not a theme feature by default and is outside of our support scope, but we will do our best to help you getting started with the customization but we will not be able to implement it. Try adding the following code in the Theme Options > CSS:
@media screen and (min-width: 980px) and (max-width: 1260px) {
a.x-btn-navbar {
display: block;
float: right;
}
nav.x-nav-wrap.desktop {
display: none;
}
.x-nav-wrap.mobile:not(.x-collapsed) {
display: block !important;
}
}
Don’t forget to clear all caches including your browser’s cache after adding the code. Let us know how this goes!