Design comparison
SolutionDesign
Community feedback
- @UnifiesPosted 5 days ago
Hi @vahid11koln, congrats on completing the challenge.
It seems you're having a little trouble - the CSS for your solution is not being displayed properly because the CSS files are not correctly linked.
Add a full stop "." before the slash "/" in the file paths - I had the exact same issue on this same challenge and this fixed it for me.
So, instead of
- <link rel="stylesheet" href="/css/img.css">
- <link rel="stylesheet" href="/css/text.css">
- <img class="image-omlette" src="/assets/images/image-omelette.jpeg" alt="omlette image">
It should be:-
- <link rel="stylesheet" href="./css/img.css">
- <link rel="stylesheet" href="./css/text.css">
- <img class="image-omlette" src="./assets/images/image-omelette.jpeg" alt="omlette image">
Do let me know if it works for you too - I hope it does. It sucks to put in all the work and have a tiny dot bug ruin everything :)
Marked as helpful0@UnifiesPosted 5 days ago@vahid11koln YES! I'm glad it did. You're welcome friend, have fun coding!
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