• Hello,

    have 2012 theme showing in text links (in this link to amazon) showing grey and not blue.
    Alraedy installed simple css plugin and copied some code from another forum post but that only changed the sidebar links.
    can anybody tell me what I have to add to this code:
    a:link { color: #21759b; }
    a:visited { color: orange; }
    a:hover { color: red; }
    a:active { color: red; }

    .widget-area .widget a { color: #21759b; }
    .widget-area .widget a:hover { color: red ; }

    a.comment-reply-link, a.comment-edit-link { color: #21759b ; }
    a.comment-reply-link:hover, a.comment-edit-link:hover { color: red; }

    .comments-link a, .entry-meta a { color: #21759b ; }
    .comments-link a:hover, .entry-meta a:hover { color: red; }

    .comments-area article header a { color: #21759b; }
    .comments-area article header a:hover { color: red; }

    .comments-area article header cite a { color: #21759b; }
    .comments-area article header cite a:hover { color: red; }

    thx
    Ted

Viewing 7 replies - 1 through 7 (of 7 total)
  • Is #21759b the color the links should be? Can you post a link to your website?

    Thread Starter tedsikkink

    (@tedsikkink)

    yes #21759b is ok
    sure, here it is: http://healthybodymindandsoul.org/

    To get all of your visited links to be orange, use this CSS. I see you’re already using a custom CSS plugin, so just add this to the code that you’re already using.

    .widget-area .widget a:visited { color: orange; }
    a.comment-reply-link:visited, a.comment-edit-link:visited { color: orange; }
    .comments-link a:hover, .entry-meta a:hover { color: orange; }
    .comments-area article header a:hover { color: orange; }
    .comments-area article header cite a:hover { color: orange; }

    If that’s not what you were trying to do, perhaps you could clarify.

    Thread Starter tedsikkink

    (@tedsikkink)

    thx for your rapid reaction, what I am looking for is for my post titles to be standard black, and all of my hyperlinks including those inside posts and on sidebar to be the standard blue ie #21759b

    Thread Starter tedsikkink

    (@tedsikkink)

    here’s a good example of what it looks like now showing the incongruency
    http://healthybodymindandsoul.org/category/tools-equipment/

    Ok, I think I understand. Try this code:

    .entry-header .entry-title a { color: black; }
    .entry-header .entry-title a:hover { color: red; }

    This way, your post titles will be black, regardless of whether they are visited or not, but the text will become red when you hover over it, just like the rest of your hyperlinks. If the hover effect is undesirable, you can delete the last line.

    Thread Starter tedsikkink

    (@tedsikkink)

    ok that’s better,thx!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘2012 link issue’ is closed to new replies.