Reputation: 35
I am using a template that has a built-in horizontal slide menu, but it slides too far (for my taste). I have inspected it with dev tools, and I can change the width from 650px (400px looks good), but it leaves grey area where the menu used to be.
What am I missing?
Upvotes: 0
Views: 76
Reputation: 10506
Please add the following code at the bottom of your stylesheet, I've tested it and it's working perfectly:
@media screen and (min-width: 768px) {
.sidebar-open .site {
left: -400px !important;
}
.slide-menu, .single .slide-menu {
width: 400px !important;
}
}
Upvotes: 1