• Resolved Aari

    (@aari)


    Hi,
    I’m wondering if there is any possibility to make an image background for only one page? is there any css code that I can add?
    Thank you for your help.
    Best,
    Aari

Viewing 5 replies - 1 through 5 (of 5 total)
  • hannah

    (@hannahritner)

    Hey Aari,
    You can do it with this css:

    .contentclass {
    background: URL(your image url);
    }

    You would just need to add the page-id-# in front of .contentclass and paste your url in ().
    Hope it helps!
    Hannah

    Thread Starter Aari

    (@aari)

    Great it works thank you so much Hannah.
    Now can I make it a little smaller, I mean reduce the width so I can see the whole image? Or should I resize the image by editing it? Thank you.
    Best,
    Aari

    hannah

    (@hannahritner)

    You would need to resize the image.

    Hannah

    You can also force the image to fill the spacing by adding background-size: cover; to your css like this:

    .contentclass {
    background: URL(your image url);
    background-size: cover;
    }

    Kadence Themes

    Thread Starter Aari

    (@aari)

    Thank you for your help 🙂
    Best,
    Aari

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

The topic ‘image background for only one page’ is closed to new replies.