Hi there,
I am using the Icon stack and I am also using Sidebars instead of a sidenav on all pages except for product posts.
I have adjusted the media query so that the side bars display from 980px instead of 1200px:
@media (min-width: 980px) {
.x-sidebar {
position:fixed;
top:0;
width:250px;
height:100%;
margin:0;
border-top:0;
z-index:1031;
-webkit-transform:translate3d(0, 0, 0);
transform:translate3d(0, 0, 0)
}
}
@media (min-width: 980px) {
.x-sidebar .max.width {
padding-left:20px;
padding-right:20px
}
}
But now my side nav displays in addition to the sidebar below 1200px. I can’t figure out how to stop the side nav from displaying.

Please help!