• Hello, newbie here.

    I am installed hueman theme recently, and i want to change the font color on the blog post to black.

    How to do that? Can i do it via costumizer > advanced settings > additional CSS?

    And since i m dont knew much about CSS, can you suggest me with the correct CSS coding to change the font color on blog post?

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Previously the font colour used by Hueman was a rather light shade of grey. It was quite difficult to read. I believe the theme author has since made the text darker. If you want pure black, you can add the following in the CSS box in Advanced Options:

    .entry { color: #000; }

    If you also want the same colour on the front blog page, you can include this line as well:

    .entry.excerpt { color: #000; }

    I have used this code (except with a dark grey colour: #333) for many years, so it should work for you as well.

    Thread Starter geniuxcode

    (@geniuxcode)

    Hmm i am searching the CSS code on google, so i am using this code below instead of .entry

    p {color: #000;}

    And it works fine. But now i am confused which CSS code is better.

    Should i use .entry instead of p ?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to change font color on Blog Post?’ is closed to new replies.