Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

clipboard-landing-page-master [my fourth project]

Gabriela 60

@Gabriela-hub-89

Desktop design screenshot for the Clipboard landing page coding challenge

This is a solution for...

  • HTML
  • CSS
2junior
View challenge

Design comparison


SolutionDesign

Solution retrospective


I could not change the color of the network icons when hovering the mouse over them. And any other tips for improvement would help me a lot.

Community feedback

Md5 dalton 1,430

@md5dalton

Posted

Greetings Gabriela 👋

Congratulations on finishing this challenge. Great work.

If you want to change the color of the svg images when a user hovers over them, you can modify the fill property through CSS. I'll demonstrate below:

svg path {
   transition: 0.5s
}

svg path:hover {
    fill: red;
}

You can add a transition property above to make it nicer. You can also use a color of your choosing, red is just an example. I hope that helps. 👌

Marked as helpful

0

Please log in to post a comment

Log in with GitHub
Discord logo

Join 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