Archived topic
How do I disable right sidebar in tablet view?
5 replies · Started by Ian on April 10, 2023
Hi,
My site uses a right sidebar, which looks great on desktop and mobile, but it's not good in tablet view. How do remove the sidebar in tablet view and place its contents below the body as it does in mobile view?
Ian M
Hi Ian,
For reference, can you provide the link to the site in question?
You may use the Private Information field for this: https://docs.generatepress.com/article/using-the-premium-support-forum/#private-information
Hi Fernando,
Yes, it is https://moneytree.express/
Hi there,
try adding this CSS:
@media(max-width: 1024px) {
.site-content {
flex-direction: column;
}
#primary,
#right-sidebar {
width: 100%;
}
site-main .site-main {
margin-right: 0
}
}
Great, that worked perfectly. Many thanks, David and team!!!
Glad to be of help!