Site logo

Archived topic

Full Width Container Box Needed

3 replies · Started by Soumyadip on March 24, 2020

Viewing posts 1–4 of 4

Hi tom, david
I will be creating few new pages where I will be displaying list categories with no sidebars on those pages..
I have checked the Content (no sidebars) but the box container is still showing the same width..
see the screenshot i.is.cc/1qMtNyOh.jpg
I want it to cover the whole area of the window as mentioned in the screenshot
Thanks!

Hi there,

its because of this CSS:

@media (min-width: 769px) {
    #primary {
        width:calc(100% - 330px)
    }

    #right-sidebar {
        width:330px
    }
}

change it to:

@media (min-width: 769px) {
    .right-sidebar  #primary {
        width:calc(100% - 330px)
    }

    #right-sidebar {
        width:330px
    }
}

Thanks David, it is now solved

You're welcome

This archived topic is closed to new replies.