Hi there,
I am looking to do some updates on http://www.evergreen-hakuba.com/en/
I want to add some extra to the menu, which means I need it to break earlier:
I’ve worked out the width of the new menu, and used this code (which I use on other sites):
@media (max-width: 1140px) {
.x-nav-wrap.desktop {
display: none;
}
.masthead-inline .x-btn-navbar {
display: block;
float: right;
}
}
@media (min-width: 1141px) {
.x-nav-wrap.desktop {
display: block;
}
}
The problem is, when I add this code the menu breaks to mobile at the right time, but nothing happens when I click the mobile button. I had this issue with another site, it was Javascript related and one of your awesome staff helped work out what was wrong.
I will add logins in a Secure Note.
Thanks so much in advance!