Hi Oli,
Thank you for reaching out to us. To show the mobile menu earlier, you can add the following code in the Theme Options > CSS:
@media screen and (min-width: 980px) and (max-width: 1024px) {
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;
}
}
Here are some related links for further reading, this could help you in finding and implementing some CSS fixes:
Don’t forget to clear all caches including your browser’s cache after adding the code. Let us know how this goes!