• Resolved ialeman

    (@ialeman)


    Hello, I just need to change the color of my general links in my site. What code do I need to write in my child theme? My theme is telling me that the colors are webkit, but what is that?

    I need this:

    link color: 3C78A7 – text decoration none
    link visited color: 3C78A7 – text decoration none
    link hover color: 7EB3DC – text decoration undeline

    Thanks in advance.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • You dont need a child theme, add the following in custom CSS

    a, a:visited{
    color: #3C78A7 !important;
    }
    a:hover{
    color: #7EB3DC1 !important;
    }
    Thread Starter ialeman

    (@ialeman)

    Thank you very much for you fast response luckychingi. Problem resolved.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘I need to change the color of my links’ is closed to new replies.