Site logo

Archived topic

stop widgets dropping

3 replies · Started by Charles on February 10, 2022

Viewing posts 1–4 of 4

An annoyance when serving ads is that sidebar displays drop to after content on mobile. Is there a way around that?

Thanks.

How do you want it to be displayed on mobile?

Maybe top or mid-page?

Try this CSS to move the sidebar to top:

@media (max-width: 768px) {
    .sidebar {
        order: -1 !important;
    }
}

Mid-page is not possible without a lot of customization.

This archived topic is closed to new replies.