• Hi everyone,

    I’m trying to change the font that appears in all pages/posts on this website: https://www.joeniekrofoundation.org

    Right now it’s a light grey and hard to read, I want to change it to this color code #3c3c3c but I’m unable to find where to input this within the CSS.

    Any help would be appreciated! Thank you.

    • This topic was modified 7 years, 7 months ago by ansjnf.
Viewing 3 replies - 1 through 3 (of 3 total)
  • In the style sheet reset.css

    html, body {
    margin: 0 auto;
    padding: 0;
    min-height: 100%;
    height: 100%;
    background: #f3f3f3;
    font-family: ‘Raleway’, Arial, Helvetica, sans-serif;
    font-size: 100%;
    color: #7c7c7c;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    }
    This controls the font you need to change. It is always better to use a child theme or a plugin to change style sheets.

    Thread Starter ansjnf

    (@ansjnf)

    I can’t find this code within the CSS. Any ideas (I’m a beginner). Is there a plugin you can recommend? Thanks!

    Your site seems to be down. It is not in style.css but reset.css

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Changing font color on entire website’ is closed to new replies.