Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML How to Make a Website Creating HTML Content Add Image Gallery Content

umut cetin
umut cetin
154 Points

my images only show on the icon not like the video, how do I change it to a full image?

I can only see my images in icons, I can't move forward

Jennifer Nordell
seal-mask
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! The easiest way for us to troubleshoot this for you would be if we could get a link to a snapshot of your workspace. On the upper right hand side of your workspace you'll see a camera icon. Click this to make a "snapshot" and link it here to us. That way we can take a look around your code and even the file/directory structure so we can get this sorted out :sparkles:

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there, Umut! I took the liberty of forking your workspace and looking at the code. The problem lies in the src attribute of the <img> tags. If you'll look carefully, you'll see that each time you've typed something like "myFile.jpeg" instead of "myFile.jpg". Note the omission of the "e" from the second variant. Here's an example of your code:

<img src="img/numbers-01.jpeg" alt="">

But it should look like this:

<img src="img/numbers-01.jpg" alt="">

Hope this helps! :sparkles:

umut cetin
umut cetin
154 Points

Thank you so much, It worked!!

Hi! I have the same problem and my code looks exactly like that without the express so I'm still stuck. Any ideas?