Changing color behind text?

  • Unknown's avatar

    Hi, I’m trying to get the color behind my text to match the background to create a more cohesive display but have failed so far. I’ve found out how to change the text color and have done so in the mean time, but I’d like the uniformity of a matching background throughout.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, I’m not sure if you mean the entire white area behind the content, or just the actual area of the post text itself. This would change the background of the post area only.

    .site-content .entry-content, .site-content .entry-summary, .page-content, .site-content .entry-header {
        background: #0061ae;
    }
    .site-content .entry-meta {
        background: transparent;
    }

    If you also wanted to change the overall larger white area, this is where that is controlled.

    .site {
        background-color: #ffffff;
    }
  • The topic ‘Changing color behind text?’ is closed to new replies.