• On my test site:
    https://test.baglampan.se

    I wounder if there is anyway of removing/changing the colour of the white/light part that is under the footer?

    On smaller resolutions there is no white part, but on higher resolutions it kind of takes over ??

    /Jocce

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Jocce,

    The white space is there because there’s not enough content to fill the browser window on larger resolutions. Your <body> is what’s filling up the empty space, and as it has no background colour it’s defaulting to white.

    All you need to do is give the <body> some kind of background colour or image, and that’ll replace the white space. To have the same grey / stripped pattern as the footer, for example:

    body {
        background: #737373 url("https://test.xn--bglampan-9za.se/wp-content/themes/evolve/library/media/images/pattern/pattern_2.png");
    }

    Regardless of what you want to replace the white with, all you need to be changing is the background on your <body> element.

    Hope that helps.

    Pete.

    Thread Starter Jocce

    (@jocce)

    Thanxs, that helped a lot ??

    /Jocce

    You’re welcome. Happy coding!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove white part under footer (Evolve theme)?’ is closed to new replies.