Design comparison
Solution retrospective
I've got a question. How do I invert the logo image color to white?
Community feedback
- @vanzasetiaPosted over 2 years ago
Greetings, Ricky! 👋
Good effort on this challenge! Well done on using the correct landmark elements for each page content! By doing that, you help the screen reader users navigate the site comfortably. 👏
To change the logo color,
- I did create a new file called
logo-white.svg
and then copy-paste the code from the originallogo.svg
. - After that, I changed the
fill
attribute to#fff
and then finally referenced it usingimg
tag to thelogo-white.svg
.
I don't remember the exact
fill
attribute that needs to be changed but you can play around with it until you find thefill
property that changed the Fylo to white.Some feedback:
- Use
button
withtype="submit"
instead of<input type="submit">
. Submit input is legacy. - The
footer__link
elements should be a link, not just a list. - The logo should have alternative text, use the company name as the alternative text. It's the important content of the page. Users of screen readers or search engine bots use that information to know what the site/project is called.
Overall, great work. All landmark elements wrap the correct page content and I think if you fixed all the issues that have been reported, this will increase the quality of the site.
I hope this information is useful! Keep up the excellent work! 👍
Marked as helpful2@pyaetheiNPosted over 2 years agoThank you so much for your feedback I really appreciate it, noted all your points!
0 - I did create a new file called
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