Hello There,
Yes you can though with a little tweak on the number of pixels for the screen width. You can make use of this ocde:
.x-navbar .desktop .x-nav li>a>span:after {
display: none;
}
@media (max-width: 1370px) {
.x-nav-wrap.desktop {
display: none;
}
.masthead-inline .x-btn-navbar {
display: block;
float: right;
}
.x-nav-wrap.mobile {
display:block;
}
.x-nav-wrap.mobile.collapse {
display:none;
}
.x-nav-wrap.mobile.collapse.in {
display:block !important;
}
}
Please let us know if this works out for you.