
Design comparison
Solution retrospective
having issues with the image uploading, when i open my project on firefox developer edition everything works and uploads fine... appreciate the feedback
Community feedback
- P@danielmrz-devPosted about 1 year ago
Hello @Jvilla825!
Your solution looks great!
I have one suggestion:
- When using the tag
<img>
, make sure to set the correct path, otherwise your code won't be able to find the image. And if your code can't find it, it won't show.
📌 This is your code:
<img src="file:///Users/josuevilla/Desktop/Portfolio/QR%20FOLDER/image-qr-code.png" alt="qr">
📌 And here's the update with the correct path:
<img src="./image-qr-code.png" alt="qr">
I hope it helps!
Other than that, great job!
Marked as helpful0@Jvilla825Posted about 1 year agothank you very much for the feed back and that solve the problem i uploaded again and it seems to work fine @danielmrz-dev
1P@danielmrz-devPosted about 1 year ago@Jvilla825
I'm glad I could help!
If my first comment was really useful, please don't forget to mark it as helpful, it helps me with the points on the platform 😊
0 - When using the tag
- @Parkavan2003Posted about 1 year ago
I think your QR code src image is not properly Uploaded.
0 - P@rohantayalPosted about 1 year ago
Your src is pointing to the wrong file.
IT is this <img src="file:///Users/josuevilla/Desktop/Portfolio/QR%20FOLDER/image-qr-code.png" alt="qr"> now.
But it should be <img src="./image-qr-code.png">
0@Jvilla825Posted about 1 year agothank you very much for the feed back and that solve the problem i uploaded again and it seems to work fine @rohantayal
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