Site logo

Archived topic

Hide sidebar on mobile for shop and shop archives pages

1 reply · Started by Kim on August 13, 2019

Viewing posts 1–2 of 2

Hi there, how can I hide the sidebar for shop and shop archives pages on mobile views?

Many thanks in advance!

BR Maike

Hi there,

try this CSS to remove the right sidebar:

@media (max-width: 768px) {
    .woocommerce.archive #right-sidebar {
        display: none;
    }
}

If you want to remove the left-sidebar then change #right-sidebar to #left-sidebar

This archived topic is closed to new replies.