Dasmoto's Arts & Crafts review

Here is my version of Dasmoto’s Arts & Crafts → Dasmoto's Arts & Crafts
For some reason, whatever I tried, was not able to get the background image for the h1 showing from folders on my local machine (selected manually the path from visual studio code, so there is no error there). If I use the external link from codecademy for the image, it works fine. I have left the version with the local image. Any help will be appreciated as well as a review on my project. Thank you in advance.

Ian

Hey! Welcome to the forums!

Your project looks great, I can’t see any issues aside from the background image on the header! It might be helpful to add a link to the project so that other people looking at your post can see the context.

I might have some suggestions to help with your background image issues as well - it looks like, in your css file, your path to the image is set as:

background-image: url(./resources/images/pattern.jpeg);

This would be the correct path if you were trying to reach that image from your .html file, but because your .css file is another location, you have to change the path. I found that changing your path to the one below made the image appear in the way you want it to (I’ve blurred it in case you’d like to try it on your own first).

background-image: url(../images/pattern.jpeg);

Let me know if you have any other questions!

Hello,

Thank you very much. That helped :))

1 Like