Tom Nowell
asked 10 years ago

The off canvas menu is great to the left on a mobile, but on 1080p screens and large external monitors it doesn’t make as much sense to keep things off to one side with so much free space.
An option to have that menu shown on the left at larger resolutions without having to open it would be good

1 Answers
Wilfred
answered 10 years ago

Hi Tom,
To resolve this issue please add following code to Header code in Dashboard / Appearance / Customize / Header code

   <style>
@media (min-width:1700px) {
.sidebar-primary {
display: block !important;
z-index: 1;
position: fixed !important;
}
.wrap, .nav-main {
margin-left: 260px;
}
.sidebar-toggle {
display: none;
}
}
</style>

Hope this helps!
 

Powered by DW Question & Answer Pro