• Hey Guys,

    I am trying to have a different background image for a div for all my pages.

    I tried to

    #heading-container.page-id-2 {
    background: url(./images/main/light-bar.jpg) top center;
    }

    But that was not working..

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • If you share your URL then I can help you out

    definitively, preferred:

    If you share your URL then I can help you out

    general:
    what is creating the .page-id-2 css class?

    if this is from body_class, try:

    .page-id-2 #heading-container {
    background: url(./images/main/light-bar.jpg) top center;
    }

    depending on where you added the css code, check the path to the background image.

    Thread Starter rpd2

    (@rpd2)

    That was it!

    .page-id-2 #heading-container {
    background: url(./images/main/light-bar.jpg) top center;
    }

    Thanks alchymyth!

    I was close.. 🙂

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Unique Page css changes’ is closed to new replies.