Site logo

Archived topic

Unnecessary White Space on the Right Side on Tablet Devices

5 replies · Started by baberksidd on May 16, 2021

Viewing posts 1–6 of 6

Hi there,

you have the Right Sidebar enabled - but it has no widgets added to it.
You can remove sidebars in Customizer > Layout > Sidebars.

Hi David,

Yes I know. But I want this to show on the desktop version and not on tablet devices. Sidebar widgets (if I put any) should be down after the content ends.

Thanks

Try this CSS:

@media(max-width: 1024px) {
    .site-content {
        flex-direction: column;
    }
    .site-content .content-area,
    #right-sidebar {
        width: 100% !important;
    }
}

Worked like charm!

Thanks David!

Glad to be of help

This archived topic is closed to new replies.