Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi,
    put the following code:
    a:hover{color:#e1e1e1;}

    You can do what navitude said. But, that will result in the whole theme going out of sync. Because, there is a lot of green on the theme.

    But, its your wish afterall.

    Hi guys, thanks for the tip, but maybe I’m missing something here? I tried adding a:hover{color:#007F7F;}to a child theme AND to the custom css field of the Aldehyde settings tab. Both didn’t change the hover color from the default green. The site in question

    Web Guru

    (@laraib110)

    if you just look at your theme, it take hover color differently … when you add simply like:
    a:hover {
    color: #007F7F;
    }
    it does change hover color to orange but of your meta anchors … just below the main post title ….

    so, if you want to apply hover color to your main green title too, then you have to target correctly that anchor …. which is not simlpy
    a tag, it’s just targeted as shown below:

    .archive .entry-title a

    hence if you have to apply hover color to that anchor simply use this line of code and you have done.

    .archive .entry-title a:hover {
    color: #007F7F;
    }
    this line will change hover color of your green title anchor now.
    hope it helps now

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Hover color’ is closed to new replies.