• Resolved dmoliveira

    (@dmoliveira)


    Good afternoon

    I’m having trouble with the zerif light template.
    I try to change the hover color with the following code:

    .focus a.zerif-default-links:hover,
    .about-us a.zerif-default-links:hover,
    .our-team a.zerif-default-links:hover,
    .testimonial a.zerif-default-links:hover,
    .contact-us a.zerif-default-links:hover {
    color: #82d579 important;
    }

    I’m using child, I’ve made several attempts and it does not change.
    please help me!

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • You have error in syntax. You missed ! before important. It should be:

    
    .focus a.zerif-default-links:hover,
    .about-us a.zerif-default-links:hover,
    .our-team a.zerif-default-links:hover,
    .testimonial a.zerif-default-links:hover,
    .contact-us a.zerif-default-links:hover {
       color: #82d579 !important;
    }
    
    Thread Starter dmoliveira

    (@dmoliveira)

    I have corrected the problem.
    The problem really was ID information

    If my solution worked and the issue got resolved, please close the ticket. Closing a resolved ticket always helps other users to find their solution better.

    Thank you!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Change Hover text Title’ is closed to new replies.