Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #100711
    erikagill
    Participant

    Hi there, I am using custom CSS to style the link color on the free version of Catch Flames. I’ve changed the colors successfully except in the post and page title links and the site title link.

    The a selector did not override the light color theme’s blue hover. My website is erikagill.com

    #100715
    Pratik
    Keymaster

    Hi @erikagill,
    Try following CSS code:

    
    .entry-title a:hover, 
    .entry-title a:focus, 
    .entry-title a:active,
    a:hover,
    a:focus,
    a:active {
        color: red;
    }
    

    You can try any hex color instead of red.

    Regards,
    Pratik

    #100859
    erikagill
    Participant

    @Pratik

    Thank you! That worked perfectly for everything except the site title.

    #100988
    Pratik
    Keymaster

    Hi @erikagill,
    Sorry, I forgot about site title. Try following code for that:

    
    #site-title a:hover, #site-title a:focus, #site-title a:active {
        color: #6aa84f;
    }
    

    Let me know how it goes.

    Regards,
    Pratik

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘H1 and site title link color on hover’ is closed to new replies.