• Resolved goodwitchkitchen

    (@goodwitchkitchen)


    First, is it possible to have the background on every page of my website?
    Second, am I able to change the default width of the main content areas of the theme so that my background shows on the sides? Currently I can only see the background if I zoom out to at least 90%.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter goodwitchkitchen

    (@goodwitchkitchen)

    I would also like to change how large the header space is.

    Hi @goodwitchkitchen!

    The amount of visible background image will depend on the screen size of the individual visitor (or you!). The content area has a set width – the wider each person’s screen is, the more of the background they’ll see.

    For example, I see the background image on both sides when I view your site, but a narrower screen might not show as much, or any background.

    If you’d like to force more background image (and narrower content) you can try this CSS:

    .site {
        max-width: 950px;
        margin: 0 auto
    }
    @media screen and (min-width: 1180px) {
        .content-wrapper {
            padding-left: 40px;
            padding-right: 40px;
        }
        .content-area {
            width: 580px;
        }
    }

    Let me know how that works!

    Thread Starter goodwitchkitchen

    (@goodwitchkitchen)

    Yes, this worked. Thanks so much!

    You’re welcome!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Changing width of content area site-wide to see background’ is closed to new replies.