Hi,
Thanks for writing in!
The only thing I notice is the menu items moving down on smaller screen.
http://screencast.com/t/Mi4hwuQYK
We can make the mobile button appear earlier.
You can add this in Custom > Edit Global CSS in the customizer.
@media (max-width: 1210px) {
.x-navbar .x-nav-wrap.desktop {
display:none;
}
.masthead-stacked .x-btn-navbar {
display: inline-block;
}
.x-navbar .x-nav-wrap.mobile {
display:block;
}
.x-navbar .x-nav-wrap.mobile.collapse {
display:none;
}
.x-navbar .x-nav-wrap.mobile.collapse.in {
display:block !important;
}
}
Hope that helps.