• Hi –

    For reference, the site I’m working on is theparapod.com

    Posts on the homepage aren’t all appearing the same – the first post you see is white text on black, the second is black text on white.

    I want all of the posts to show up on the first page in the same way as the top one – white text on black.

    I can’t work out what in the theme code needs to be changed to make this the case.

    Any help is greatly appreciated!

Viewing 1 replies (of 1 total)
  • In your Child Theme or CSS Editor Plugin try this code:

    .home-container article {
        background-color: #000;
    }
    
    body {
        color: #fff;
    }

    *Note
    If your theme has a custom CSS Editor in it, you can also paste the code in there.

    Never edit core CSS or PHP files under Appearance > Editor. Your edits will be deleted when the theme is updated.

Viewing 1 replies (of 1 total)
  • The topic ‘Post background colour on front page’ is closed to new replies.