Viewing 3 replies - 16 through 18 (of 18 total)
  • Thread Starter columbus12

    (@columbus12)

    strange its still not changing for me?

    I tried the revised code you wrote: .page-id-23 {
    background-image: url(https://image.shutterstock.com/z/avopix-383700109.jpg);
    }

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    I see. Now it’s an issue of CSS specificity. The theme’s style is overriding your CSS.
    The theme is using these selectors:

    body.custom-background

    An example of more specific selectors is below:

    html body.page-id-23

    So the resulting code would be:

    html body.page-id-23 {
        background-image: url(https://image.shutterstock.com/z/avopix-383700109.jpg);
    }

    Thread Starter columbus12

    (@columbus12)

    it worked now
    thanks so much for your great help!

Viewing 3 replies - 16 through 18 (of 18 total)
  • The topic ‘background image wont change’ is closed to new replies.