Home Forums Azuma Pro How to change background color in posts Reply To: How to change background color in posts

#9247
Andy
Keymaster

Hi Mike,

Did you receive my email reply to your question that you previously asked via our contact form?

I ask because I’m not sure if this is a different question or the same.

To add a white backgorund to the content area of your single post pages, add this CSS snippet to Customize > Additional CSS:

.single .content-area {
    background: #fff;
    padding: 1em;
}

…or if you want the background image to show thru slightly, use something like this:

.single .content-area {
    background: rgba(255,255,255,0.7);
    padding: 1em;
}

Hope I have understood correctly and this helps answer your query.