Hi Enfold-Team!
I would like my social icons in the header and footer to change their colour to white on hover. I think it was the default setting but since I added a custom icon they stay black. In my custom CSS I have the lines
#top .av-social-link-bloglovin:hover a{color: #ffffff !important; background-color:#4dbd33 !important;}
#top .av-social-link-instagram:hover a{color: #ffffff !important; background-color:#00cdcd !important;}
to change the hover background for these two icons to a custom colour which is working well. But I also included the colour change to white which isn’t working. I tried several CSS-solutions I found on this board but nothing seems to work.
Is there a simple CSS-line which does this for me or could you provide another solution?
Best regards!
Hey krestien!
use this code instead:
#top .social_bookmarks li:hover a {
color: white !important;
}
Regards,
Andy
Thanks Andy, worked perfectly!