CSS Font Colors

  • Unknown's avatar

    I want to find out how to change the different font colors on my website.

    Specifically….

    – The category box text (from black to white)
    – The article headlines (from gray to black)

    Thanks!

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

  • Unknown's avatar

    Hi, this will turn post titles black for you.

    .entry-card--text .entry-header a, .entry-card--text .entry-title {
        color: #000 !important;
    }

    I’m not seeing what you are referring to as a category box. Can you point me to a page or post where this is?

  • Unknown's avatar

    Awesome! That worked.

    If you go to the homepage (www.grandstandnews.com), you will see the “Curry Cured” post that I’m linking to as a test. Above that should be a orange/red box that reads “news.” Ideally, I’d like to change the word “news” to white versus the black that it currently is showing as.

  • Unknown's avatar

    Got it working! Thanks.

  • Unknown's avatar

    Hi, you have the CSS rule you need right now in your CSS, you just need to add a background-color declaration to get the background black, like this.

    .cat-links a, .entry-format a, .cat-links, .entry-format {
        color: #fff;
        background-color: #000;
    }
  • The topic ‘CSS Font Colors’ is closed to new replies.