Design comparison
Solution retrospective
this was really a challenge for me, learned a lot. Had to re-do the project 2 times from the ground because I was unhappy with the result, could still improve it a lot but I had some problem with the footer and button logo for some reason. if you have any tips or just want to talk about web dev make sure to add me on discord ! Dayce#5730
Community feedback
- @pikapikamartPosted over 3 years ago
Hey good work but I saw that your background image is not loading properly and looking into your repository. I saw that you place css inside of a folder, well the problems is that you declare you background like this
background-image: url(/images/bg-hero-desktop.svg);
what this does is it goes to the root folder right, well it works in our IDE but if you were to host it, avoid using that. Instead you could make use of thisbackground-image: url(../images/bg-hero-desktop.svg);
, see the../
what it means is that, from the css, inside the css folder, "go one level higher and fetch me bg-desktop-.svg inside of images folder. Avoid using
/and just make use of
../` sometimes I get confused about it but it fines as long as we study about it am I right ^^0 - @DayssePosted over 3 years ago
Ehh missed some font/color things, guess I was to excited to just show it to the world :D
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