[Resolved] Post Background Color

Home Forums Support [Resolved] Post Background Color

Home Forums Support Post Background Color

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #925433
    Mike

    Hello,
    Any idea how to make the post content color white? I don’t want to change for the whole site. I installed the Simple CSS plugin and entered

    body {
    background-color: #FFFFF;
    }

    But not working

    Thank you

    #925589
    David
    Staff
    Customer Support

    Hi there,

    you need to remove the background image and replace the colors of the body and the two containers like so:

    .single-post .inside-article, .single-post .comments-area {
        background-image: none;
        background-color: #ffffff;
    }
    #926427
    Mike

    Thanks that got rid of the background as desired. But is there any way to keep the background on the side? I am using a contained format.

    So I would like the contained space to be white and the background to be present outside of the contained space.

    I hope i explained myself clearly
    Thank you!

    #926595
    David
    Staff
    Customer Support

    Of course, i edited the code above to remove this: body.single-post, which was targeting the body of the post ๐Ÿ™‚

    #927811
    Mike

    thank you as always. much appreciated.

    #927948
    David
    Staff
    Customer Support

    you’re welcome

    #940092
    Pamela

    What is the CSS to change the background colour of posts on the all-posts page? The code above works for single post page, but in the long listing of them all, I still have blue backgrounds.

    [I know this is a basic question. I use static pages usually, not blogs.]

    #940095
    Leo
    Staff
    Customer Support

    It should be:

    .blog .inside-article, .archive .inside-article {
        background-color: #ffffff;
    }
    #940738
    Pamela

    Beautiful! Thank you again.

    #940781
    Leo
    Staff
    Customer Support

    No problem ๐Ÿ™‚

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.