• Hi, I’m having trouble figuring out how to change the text colors for links. I managed to change the Continue Reading button thanks to another post but I can’t change the link colors when I hover over the link. I need help changing the Post Comment box as well if anyone knows how to do that. Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Fotis

    (@markwaregr)

    Hi there,

    Thank you for using Olsen Light.
    Add this

    .entry-meta a,a,.entry-content a{
        color:red;
    }
    .btn, .comment-reply-link, input[type="button"], input[type="submit"], input[type="reset"], button{
        background:red;
        color:#fff;
    }

    in your custom CSS box under Customize->Additional CSS.
    Let me know if you need additional help on this.

    Thread Starter seancefictions

    (@seancefictions)

    Hey, thanks for the response! I’m still having trouble changing the color of links when hovering though, this just changed the actual link color. Thanks for your help!

    Fotis

    (@markwaregr)

    Hi there,
    my bad, try this

    .entry-meta a:hover,a:hover,.entry-content a:hover{
        color:red;
    }
    .btn:hover, .comment-reply-link:hover, input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover, button:hover{
        background:red;
        color:#fff;
    }

    instead. Let me know if this worked for you.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Change link hover colors + Post Comment’ is closed to new replies.