Site logo

Archived topic

How do I disable right sidebar in tablet view?

5 replies · Started by Ian on April 10, 2023

Viewing posts 1–6 of 6

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 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!

This archived topic is closed to new replies.