Hover Color in Chunk Theme

  • Unknown's avatar

    Hi there,

    I’m trying to change the hover over color to darkred for everywhere that “hovering” is currently enabled in the chunk theme. (It is currently set to a sea-green color.)

    This got me started:

    a:hover {color: darkred}

    …but it only changes some of them.

    New to css..your help is much appreciated! Thank you!

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

  • Unknown's avatar

    Have a look at the following.

    .hentry .entry-meta .cat-links a:hover {
    color: darkRed;
    }

    There is also the “comment” link under the post date and the footer credit links, but there is no “hover” color set for either, just the normal state of green.

    .hentry .entry-meta .comments a {
    color: #36BCAB;
    }
    
    #footer a {
    color: #36BCAB;
    }

    If you wanted to create a hover color for them you could with the following.

    .hentry .entry-meta .comments a:hover {
    color: darkRed;
    }
    
    #footer a:hover {
    color: darkRed;
    }
  • The topic ‘Hover Color in Chunk Theme’ is closed to new replies.