• I used your tips on this thread to keep my header image from repeating

    #parallax-bg {
    background-repeat: no-repeat;
    }

    But now the sides of the header are white, I would prefer if they were the same color as my background (#EAEAEA). Is this possible by adding something to the code?

    Website is https://www.bullishmoose.com

    Thanks,

Viewing 2 replies - 1 through 2 (of 2 total)
  • Add the following line of code to the code you already have in place to get a background color similar to your image.

    background-color: #D7CEBD;

    The final result will look like this:

    #parallax-bg {
    background-color: #D7CEBD;
    background-repeat: no-repeat;
    }

    Thread Starter bradbpw

    (@bradbpw)

    Awesome! Thanks for the help Michael!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Help with header image – background color on wide screens’ is closed to new replies.