Archived topic
Remove Sidebar Element from Mobile
7 replies · Started by Erin on May 1, 2021
How can I disable the sidebar from appearing on mobile? I created a sidebar with a block element and I can't manage to figure it out...
Hi there,
Any chance you can link us to the site in question?
You can use the private information field.
Let me know :)
Linked, let me know if you need the logins or anything
Is there a specific page I should be looking at?
I created a sidebar as a block element for all blog posts that I want to hide on mobile
Try this CSS:
@media (max-width: 768px) {
.sidebar {
display: none;
}
}
Thanks that worked!!
No problem :)