Archived topic
Hide Right side bar widget on mobile
1 reply · Started by Nathan on October 12, 2022
Viewing posts 1–2 of 2
Hello,
I have a side bar in the Desktop mobile what looks fine in the Desktop but in the mobile no one really goes there because it shows almost in the footer of the website, how could I hide this widget just on mobile so I can save some loading time in the mobile pages once people don't even go there?
Thanks!
Hi Nathan,
Try this CSS:
@media (max-width: 768px) {
.sidebar {
display: none;
}
}
This archived topic is closed to new replies.