• I’m trying to change the background of Twenty Thirteen, when you open up the site on a wide screen – say 1920 – it eventually stops scaling and you get white borders/background to the entire site.

    Here’s the site (the theme is a child theme “thunderpaws”):

Viewing 5 replies - 1 through 5 (of 5 total)
  • We need a link to your site.

    “thunderpaws” is not a domain name – and thunderpaws.com is not a WordPress site. Do you perhaps have WP installed in a sub-directory?

    Thread Starter drakeblogs

    (@drakeblogs)

    Sorry, it’s

    thunderpawsfl.com

    Okay good, so the width is being constrained here:

    .site {
        background-color: #FFFFFF;
        border-left: 1px solid #F2F2F2;
        border-right: 1px solid #F2F2F2;
        margin: 0 auto;
        max-width: 1600px;
        width: 100%;
    }

    So to make it wider try adding this to your child theme:

    .site {
        max-width: none;
    }

    Not sure if that will work okay – I’m not on a big enough screen to test it.

    Thread Starter drakeblogs

    (@drakeblogs)

    Thanks, but no that doesn’t work.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Change background for a wide screen’ is closed to new replies.