• Resolved jorlando4

    (@jorlando4)


    Hello,

    I am currently working on my organization’s website (www.inerde.org) and I am trying to make the pages 100% of the width of the page (right now they are set by default at ~80% width).

    I’m assuming that I have to travel deep into the php files to change this and was wondering if someone knew how I could do so?

    Joey

Viewing 2 replies - 1 through 2 (of 2 total)
  • you only need to change your .container width in the css.

    Create a child theme or load a custom.css plugin and add this code to either:

    @media all and (min-width: 1200px) {
    .container {
    width: 100%;
    }
    }

    If that doesn’t do it, post back with a link to your site and I’ll take another look.

    Thread Starter jorlando4

    (@jorlando4)

    Works great! Thank you 🙂

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

The topic ‘Full Width Page – Virtue Theme’ is closed to new replies.