I only have 2 menu items, so I do not want the menu to collapse until the screen is quite small. I found this code below, but it does not seem to work.
@media (max-width: 200px) {
.masthead-stacked .x-btn-navbar {
display: inline-block;
}
.x-nav-wrap.desktop {
display: none;
}
.x-nav-wrap.mobile {
display:block;
}
.x-nav-wrap.mobile.x-collapsed {
display: none;
}
}