Design comparison
SolutionDesign
Solution retrospective
I couldn't put the effect hover in the social icons :(
Community feedback
- @vanzasetiaPosted almost 3 years ago
š Hi there!
š Congratulations on finishing this challenge! About the social media icons, you can use the Font Awesome icons instead and change the color of the icons using the
color
property or you can use inline SVG and change the color usingfill
property./* If you are using font awesome */ .facebook:hover { color: red; } /* If you are using inline SVG */ svg:hover path { fill: red; }
That's it! Hopefully, this is helpful!
Marked as helpful0@Chuyto70Posted almost 3 years ago@vanzasetia Thanks so much! i'll do it that way!
0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord