Before you ask please READ THIS

Change color of hover links?

Hello, one thing give me a problem to modify the theme, i have changed all Links color hover in global layout to change the orange color of base, but i have still the same color and not my modifiyed color.
How do change the link color hover in article ?

Thanks!
Sans titre-1.jpg
840 x 472 - 143K

Comments

  • AirAir
    Posts: 10,970
    Hello:-)

    I couldn't reply earlier, sorry.

    Please post link to this site and I will check what CSS have to be added to fix it.

    With kind regards.
  • lucaskozak.com
  • AirAir
    Posts: 10,970
    I see we didn't add settings for links
    You can add such custom CSS to change them:

    a{ /* normal links */
    color: #000;
    }
    a:hover{ /* hovered links */
    color: #ff0000;
    }
    With kind regards.
  • Thanks, with this custom CSS, it run on few pages (http://lucaskozak.com/bio-cv/) but no on blog. It's always in orange: http://lucaskozak.com/blog/ (for title)



  • AirAir
    Posts: 10,970
    You are right. Please use this custom CSS instead:

    /* normal links */
    a{
    color: #000;
    }

    /* hovered links */
    a:hover,
    h2.post-title:hover a{
    color: #ff0000;
    }
    With kind regards.
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!