• Resolved jklarich

    (@jklarich)


    I am still having trouble with text color in the content area on my website. Here is the CSS I have:

    /* change page content to green */
    .page .entry {
        color: #000033
           font-size: 16px;
      font-family: Arial, Helvetica, sans-serif;
    }

    I am trying to get the color to green (or black which I tried before). Neither work and the text color is gray. What should I try?

    Here is my website:

    http://grangerwashington.org/

Viewing 3 replies - 1 through 3 (of 3 total)
  • In the style.css of your theme find this code:

    “The main css stylesheet of the Hueman theme is located in /assets/front/css/main.css.”

    html { -webkit-font-smoothing: antialiased; /* safari font rendering issue fix */ }
    body { background: #eaeaea; font-size: 16px; line-height: 1.5em; color: #666; font-weight: 300; }
    ::selection { background: #3b8dbd; color: #fff; }
    ::-moz-selection { background: #3b8dbd; color: #fff; }
    a { color: #3b8dbd; text-decoration: none; outline: 0; }
    a:hover { color: #444; }
    img { max-width: 100%; height: auto; }

    Hi jklarich,

    Put into child theme style.css file.

    /* single post content black */
    .entry {
    color: #111;
    }

    or

    /* single post content green */
    .entry {
    color: #00ff00;
    }

    Thread Starter jklarich

    (@jklarich)

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Font Color in Content Area’ is closed to new replies.