Archived topic
How to Disable the sidebar on mobile?
5 replies · Started by Stephane on June 3, 2020
Viewing posts 1–6 of 6
Hello
How to Disable the sidebar on mobile? By default, it is displayed below the content. I would like not to display it at all?
Regards
Hi there,
this CSS to remove the right:
@media(max-width: 768px) {
#right-sidebar {
display: none;
}
}
this to remove the left:
@media(max-width: 768px) {
#left-sidebar {
display: none;
}
}
OR this to remove both:
@media(max-width: 768px) {
#right-sidebar, #left-sidebar {
display: none;
}
}
Thx David ❤️
You're welcome
DAVID
I went looking for a way to disable my blog's sidebar on mobile screens and found this page. and your solution worked perfectly.
Thanks!
NEAL
Hi Neal, - glad you found it of use :)
This archived topic is closed to new replies.