hi guys, i have icons on my page that i’d like to have a purple background on hover. Currently, when you hover it shows a white square behind the black circles which I don’t want. I want to black to turn purple. can you help with this?
Thanks!
Hey bobfurgo,
You have this in your style.css file:
.social-bio-icons:hover {
background: white;
}
Try changing it this instead:
.social-bio-icons:hover {
background: transparent;
color: purple;
}
Best regards,
Rikard
thank you!!