Site logo

Archived topic

Different body background image each page

3 replies · Started by ch1800 on July 24, 2021

Viewing posts 1–4 of 4

Hello,

Is it possible to have a different background image for body on different pages/posts?
And without using any builder or block.

I want to create groups of pages and posts with different background patterns according to their respective topic.

Thanks.

Hi there,

simplest way is to use a Hook Element to add your custom styles:

https://docs.generatepress.com/article/hooks-element-overview/

Create a new hook
Add your CSS styles eg.

<style>
body {
    background-image: url('full-url-to-the-image');
    background-size: cover;
    background-repeat: no-repeat;
}
</style>

Set the Hook to: wp_head
Set the Display Rules to the pages / posts or post category etc. for where you want it displayed.

Repeat the above for each different image group.

Awesome, many thanks David!

Glad to be of help

This archived topic is closed to new replies.