Custom content background images

Apologies for what may be a silly question, I am quite new to coding and have focused more of my skills on general visual design up until now. However I have a question.

I am wanting to put a custom background image in the content of my front page (http://www.kevinreader.com/) however I have found that editing it this way has placed that same image across all of my content (http://www.kevinreader.com/projects/)obviously.

Is there an easy way to display this custom background for my front page ONLY?

Much thanks in advance for any help you can offer.

Instead of applying styles for .post-inner-content class in general try to target it more specifically to apply changes only from front page.

.home .post-inner-content {
/* your styles here */
}

To make it even more specific you can target specific page by its ID.

.page-id-4 .post-inner-content {
/* your styles here */
}

Possibilities here are endless :slight_smile:

Let me know if this helps.

THAT worked perfectly! Thank you so very much for that!