Hi John,
You are using fullwidth layout so the Navbar will be fullwidth and that’s pretty expected. Would you clarify what you are expecting here?
However you can use the below code to prevent the breaking the menu items in two lines :
@media only screen and (min-width: 980px) and (max-width: 1200px) {
.x-navbar .desktop .x-nav > li > a:not(.x-btn-navbar-woocommerce) {
padding-left: 10px;
padding-right: 10px;
}
}
@media only screen and (min-width: 980px) and (max-width: 1169px) {
.x-navbar .desktop .x-nav > li > a {
font-size: 12px;
}
}
Hope this helps.
Cheers!