Hey there,
Hope you’re well today!
This is possible with adding some custom CSS and targeting pages by their ID. I’m not sure which background color are you looking to change? Color of the header, title area or content http://screencast.com/t/O3ZRd0TZbMd?
Edit: I’ll need link to your site so I can provide the correct CSS 🙂
Best regards,
Bojan
Hi Bojan,
very well, thank you! Struggling, as I am a complete newbie to WP 😉
I would like to set a picture as a background for the content area.
Here’s my website: http://anitamassagetherapy.com.au/wordpresstest/wordpress-4.1/wordpress
I tried to edit CSS by using `body.page-id-13 {
background: url(‘URL of the picture’) !important;
}` but it didn’t work.
thanks a lot
Hey again,
You were very close so I guess you’re not a newbie to WP as you say 😛
Also I suggest never editing the theme core files especially when the theme you’re using has it’s own custom CSS tab which is located at the bottom of Appearance >> Theme Options. Please add the following code there:
.page-id-7 .content {
background: url(URL of the picture);
}
Replace the page id number with the page id where you want to add it and you should have background image displayed on that page.
Hope this helps 🙂
Cheers,
Bojan
Hi Bojan,
It works! thanks a lot for a quick and efficient reply!