Home › Forums › WoodMart support forum › Hide sidebar on desktop but keep it in mobile › Reply To: Hide sidebar on desktop but keep it in mobile
January 29, 2023 at 12:03 am
#438614
Fletsch
Participant
Ok I made it work with the following CSS:
@media (min-width: 1025px){
.site-content.col-lg-10 {
flex: 0 0 100%;
max-width: 100%;
}
.sidebar-container {
display: none;
}
}
But it’s of course not a fine solution. Would be great if you could integrate that scenario with hidden sidebar on desktop into the theme configuration. I’m sure that I’m not the only one who tries to make that work.
Best regards
- This reply was modified 1 year, 10 months ago by Fletsch.