Viewing 6 replies - 1 through 6 (of 6 total)
  • You should find the CSS file (most probably called styles.css) used by your Theme.

    The theme files can be found in the /wp-content/themes/.

    In the CSS file search for the a:hover properties or something similar and change the colour from there.

    Find this in your style.css file

    a:hover .entry-utility {
    color: #434343;
    }

    and replace with this…

    a:hover .entry-utility {
    color: #000000;
    }

    Back up your files first!

    Thread Starter moussempes

    (@moussempes)

    It didn’t work. It’s still red upon rollover…

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Try

    .comments-link a:hover,
    .entry-utility a:hover {
     color: black;
    }

    Remember any changes to original theme files will erase once the theme updates.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Accidental post.

    Thread Starter moussempes

    (@moussempes)

    That did it! Many thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Changing CSS on tags and comments’ is closed to new replies.