
Solution retrospective
While trying to recreate the design, it was fun and I found it hard to make my profile picture come together and arranging my html element accurately. I have a long way to go but would really like feedback and review of my code. View my Profile paragraph could not change the background color, would love to know why.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @MikeBeloborodov
Hello! I like how it looks, very good for a beginner! Try to change your header background color like this:
header { background-color: blue; }
It should work. Or change it to any other color that you like. Hope it helps! Good luck!
Marked as helpful - P@jgreen721
Yea it looks like you have the
span
background set to blue and so that is whats rendering. Sincea
tags(links) naturally default to blue text, that makes things a little hard to see but that can overwritten in css as well.a{color: foo}
-- although this approach will apply the color to alla
tags which may not be what you want, in which case just give thea
tag aclass
and target it that way.Nice work though, I like the personalized/contact header idea and you nailed it on the card design! 🙂
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