• Hi!

    Need some help with coloring the links. I’m a bit color blind so I need help finding the specific css style to change since if I try to find it on my own chances are I won’t see the difference when it changes. Anyway…

    I made a site for a client. When they write a post the text in the post is black, if they put in a link the words that are the link are green and when you hover over they turn red (I changed that with a:hover{} ). Now they want all the links to be red all the time (so change the green to red ), where do I change that? And only the links in posts should be colored red, all other links, hovers, etc should stay as they are.

    Thanks!

Viewing 1 replies (of 1 total)
  • Hi tcempk. Give this css a try:

    /* links in post red */
    .single .content .post a {
        color: #f00;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘link color’ is closed to new replies.