• Hello! Could you help me, please, to change the color of fonts in excerpts and posts?
    I’ve tried to change it in the Style.css, .entry.excerpt: changed default #aaa to #696963 color, but it doesn’t work.
    The website is blog.oofind.ru

    Thank you in advance!

    Artem

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Artem. Welcome to the Hueman forum.

    For the excerpt try this:

    .entry.excerpt > p {
        color: #696963;
    }

    For your single posts you’ll need to use the !important rule since the <p> tags all have inline <span> styles:

    .entry-inner > p span {
        color: #696963!important;
    }

    This one worked for me. thanks a lot

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing the font's color’ is closed to new replies.