Site logo

Archived topic

Change from [content-no sidebar] to [content-sidebar] responsively

2 replies · Started by Pete on March 22, 2016

Viewing posts 1–3 of 3

Hi Tom I've got challenge for you. I'd like to have the right sidebar visible up until a certain width then have the layout change to no sidebar below that width using a @media css (or some other way)... is this possible?

Thanks Pete.

You could do something like this:

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    .content-area {
        float: none !important;
        width: 100% !important;
    }
}

Sweeeeeeeeeeet!

This archived topic is closed to new replies.