Viewing 3 replies - 1 through 3 (of 3 total)
  • Best thing to do is learn to use the developer tools in Firefox (or Firebug) or Chrome or Safari or IE to see what’s loading on your site and how to work with and change the CSS and HTML. You can edit the CSS “live” in your browser, and then when you have the hover effects you want, add that CSS to your child theme style.css file.

    And take a look at the hover selector: https://developer.mozilla.org/en-US/docs/Web/CSS/:hover

    Hi @boxestim,

    Something like this might get what you’re looking for – a.postspreview:hover { color: #fff; }. The black font color appears to be the default hover state for <a> elements throughout the site, so specifying a hover rule for the <a> elements in question should clear this up.

    Hope this helps!

    Thread Starter boxestim

    (@boxestim)

    thnx for the tip Mark, and thanks Daniel! that solved the issue. Still think is weird that if I target a class:hover it does not overwrite the default settings..

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Hover text-color does not work’ is closed to new replies.