Design comparison
Community feedback
- @CodeWithDionPosted over 1 year ago
Hey there!
First of all, congratulations on completing the challenges! That's a great accomplishment, and I'm really impressed with your work.
I wanted to provide you with a suggestion regarding the image file path you mentioned. It seems that there might be a small issue that could potentially be easily fixed. Here's what you can try:
Remove the forward slash (/) at the beginning of the image file path. Instead of "/images/image.png", try "images/image.png". This change might help in properly locating the image file.
Alternatively, you can also try using a dot-slash (./) at the beginning of the image file path. So instead of "/images/image.png", you can try "./images/image.png". This method often helps with resolving relative paths correctly.
By making either of these changes, you may be able to ensure that the image file is being referenced correctly and displayed as intended.
Once again, great job on completing the challenges! Keep up the fantastic work, and happy coding! If you have any further questions or need additional assistance, feel free to ask.
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