Archived topic
How to hide sidebar on mobile?
1 reply · Started by Jacks McNamara on August 19, 2016
Viewing posts 1–2 of 2
Is there a simple piece of code to hide my right sidebar on a mobile device? Thank you!
This CSS should work:
@media (max-width: 768px) {
#right-sidebar {
display: none;
}
}
Adding CSS: https://generatepress.com/knowledgebase/adding-css/
Let me know :)
This archived topic is closed to new replies.