Hi,
So I’m trying to change the hover colour of the text for the services links on the main page. When I change the primary link color, all is well and the color changes. However, the hover attribute does not seem to be working. Regardless of the color I set the hover to, the link does not change colors.
My code:
.home-service ul li .content .service-title a{
color: #43484d;
hover: #ffffff;
}
Any help would be appreciated. Thanks.
Hello,
Thanks for writing. Hover is not a property of the a element, it is a selector.
The code should be:
.home-service ul li .content .service-title a{
color: #43484d;
}
.home-service ul li .content .service-title a:hover{
color: #fff;
}
Best,
Juan.
Thanks so much! As usual, fast and amazing support.
Thanks for your kind words.
Have a nice day,
Juan.