Changing font color in SELA theme

  • Unknown's avatar

    I’m trying to change the font color from a “washed out gray” (others’ words) to a true black. I found some code from an older forum post that works in the preview mode but not on the live site. And yes I did press Save & Publish. Does anyone know what might be happening? I’m pretty new at CSS so go easy! Thanks.

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

  • Unknown's avatar

    Hi, can you point me to the text you are wanting to change? I’m seeing that you have set colors from within the page/post editor.

    The base color for most things in Sela are set here.

    body, button, input, select, textarea {
        color: #404040;
    }

    Widget titles would be here.

    .front-widget-area .widget-title, .sidebar-widget-area .widget-title {
        color: #4f4f4f;
    }

    Non-hover link colors would be here.

    a {
        color: #e1122a;
    }

    Link hover colors here.

    a:hover, a:focus, a:active {
        color: #aaa;
    }

    Post entry meta data (the stuff to the left of the content) would be here.

    .entry-meta a {
        color: #aaa;
    }

    Let me know if I missed what you are wanting to change.

  • The topic ‘Changing font color in SELA theme’ is closed to new replies.