Hi @Mupa,
To increase the width at that resolution, use following CSS Code:
@media screen and (max-width: 1280px) {
#fixed-header .wrapper {
width: 1135px;
}
}
Second option is to show mobile menu early as you said. Currently when width goes below 991px, mobile menu appears. So we can make it so that then width goes below 1281px, mobile menu appears. To achieve this, use following code:
@media screen and (max-width: 1280px) {
.mobile-menu-anchor {
display: inline-block;
}
.nav-primary .menu {
display: none;
}
}
Let me know how it goes.
Regards,
Pratik