Hi There,
Client updated their site adding more menu items and I found the custom CSS code for changing the breakpoint to 1360px. However, it’s not working in IE and I haven’t been able to figure it out.
Here’s the site:
Here’s the custom CSS I added:
@media (max-width: 1360px){
.masthead-inline .x-btn-navbar {
display: block;
float: right;
}
.x-nav-wrap.desktop {
display: none;
}
.x-nav-wrap.mobile.collapse {
display: none;
}
.x-nav-wrap.mobile.collapse.in {
display: block;
}
}
What’s the css to accomplish the same in IE?
Thanks, Todd