Archived topic
Disable right sidebar widget on phones and tablets
3 replies · Started by francesco on November 22, 2022
Viewing posts 1–4 of 4
Hello everyone, I can't disable the side widgets on phone and tablet, actually on phone I can using this ccs
@media(max-width: 768px) {
#right-sidebar {
display: none;
}
}
,
but on tablet it doesn't work.
advice?
Hi there, try adding this CSS:
@media(max-width: 1024px) {
#right-sidebar {
display: none;
}
#content.site-content .content-area {
width: 100%;
}
}
hi david, do I add it to this
@media(max-width: 768px) {
#right-sidebar {
display: none;
}
}
or replace it?
Replace it :)
This archived topic is closed to new replies.