Site logo

Archived topic

Mediavine asks for sidebar to be 300px min and to move to bottom at < 1024 width

3 replies · Started by Dominique on July 31, 2019

Viewing posts 1–4 of 4

I'm setting up my website to work with Mediavine which needs a sidebar of at least 300 pixels wide and for that sidebar to move to the bottom of the screen when it is 1023 pixels or under.

We need your sidebar settings changed so that the sidebar stays a fixed width of at least 300 pixels as your page resizes, breaking to the bottom of the page at 1023 pixels of page width.

Please advise...

Hi there,

you can use this CSS to force the sidebar to stack at 1023px:

@media (max-width: 1023px) {
    #primary, #right-sidebar {
        width: 100% !important;
        float: none !important;;
    }
}

Perfect thank you!

You're welcome

This archived topic is closed to new replies.