• Resolved lindahomer

    (@lindahomer)


    Is it possible to change the background of the content area of a blog post? Have tried different selectors, but have yet to find the correct one!

    Thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Where there’s a will, there’s a way!

    Can you post your site’s url so I can take a look? 🙂

    Ahh, nvm, I think I found it from your other post (kinda creepy, eh? haha)

    The one you’d be looking for would be .postcontent, so this:

    .postcontent {
        background: #fff;
    }

    Would turn the post backgrounds white, and as an extra touch you can even use .page-header to have it match, so it would then be:

    .postcontent, .page-header {
        background: #fff;
    }

    Cheers!

    Thread Starter lindahomer

    (@lindahomer)

    Yes, that’s the one! I knew it had to be there somewhere…I just had look at the code for so long that I couldn’t see straight anymore…LOL

    Thank you!!

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

The topic ‘Blog post content background’ is closed to new replies.