• Resolved DannyS89

    (@dannys89)


    Hello,

    I was wondering, is it possible via CSS to make the overall site container wider? Say 1600px? I think I figured it out but I’m not sure it’s the best way. Here is what I have:

    .container {
        width: 1600px;
    }

    That code seems to alter the responsiveness of the site.

    Also is it possible to use 2 sidebars? One on each side?

    Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter DannyS89

    (@dannys89)

    Here is a link to the site: CookinBasics.com

    hannah

    (@hannahritner)

    Hey,
    Your code will work you just need a media query. Change it to this:

    @media (min-width: 1600px) {
    .container {
        width: 1600px;
    }
    }

    There isn’t an option to have two sidebars without editing a child theme. You could use the page builder plugin and create a sidebar effect using columns. https://ww.wp.xz.cn/plugins/siteorigin-panels/

    Hannah

    Thread Starter DannyS89

    (@dannys89)

    Thanks! Works great!

    Out of curiosity, would it be really hard to create a child theme with 2 sidebars? I could definitely use SiteOrgins plugin as you mentioned but for some pages it would work a lot better to have a standard sidebar. Just wondering.

    Thanks!

    hannah

    (@hannahritner)

    The theme really isn’t set up for two sidebars so it would require a good amount of code knowledge and some major editing.

    Hannah

    Thread Starter DannyS89

    (@dannys89)

    Ok Thanks, that’s what I was wondering!

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Wider Pages’ is closed to new replies.