Design comparison
Solution retrospective
I noticed after uploading the H1 color was blue. also I'm having an accesibility report from one of the landmarks and I can find a fix for it
Community feedback
- @FluffyKasPosted over 2 years ago
Heyo,
I wish I could explain the article that is linked in the accessibility report but I'm also struggling to understand it >.< What I'd suggest though, even without the report is to remove those aside elements, I'm not sure this would be a good use case for them. A div, a span or a p element would be fine here.
Marked as helpful0@moakintundePosted over 2 years ago@FluffyKas assigning the content using a div worked fine for it. my current issue is now from my localhost I have the H1 element with color white but after uploading it to a live site the color is now blue, I cant -find where the error originated from
0@FluffyKasPosted over 2 years ago@moakintunde
It's this code:
a { text-decoration: none; } a:hover { color: hsl(178, 100%, 50%); } a:visited { color: white;
You set the link color when it's hovered and when it's visited but the for the initial state you didn't set it. Since you have probably clicked on the link on your own computer, the link appears white, as per the rules you set ^^
That's my best guess, at least. So you just need to add this:
a { text-decoration: none; color: white; }
Marked as helpful0@moakintundePosted over 2 years ago@FluffyKas thanks
I really didnt catch my attention 😊. It's all good now
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