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

JavaScript Using jQuery Plugins Using a jQuery Carousel Add a Carousel to a Page

Derek Etnyre
Derek Etnyre
20,822 Points

The <img src="img/slide-Kitt.png" alt="" /> tag does not display the .png file. Should be lower case: slide-kitt.png

The <img src="img/slide-Kitt.png" alt="" /> tag does not display the .png file. Should be lower case: <img src="img/slide-kitt.png" alt="" />

6 Answers

Fernando Vila
Fernando Vila
9,870 Points

You don't need the final "/" there.

Try using this one

   ```
      <img src="img/slide-Kitt.png" alt="" >
      ```
Derek Etnyre
Derek Etnyre
20,822 Points

Ok... I just submitted this question so the teacher knows the case of Kitt.png does not match the actual file name of Kitt.png, hoping they will fix in their files.

Kyle Vassella
Kyle Vassella
9,033 Points

It's still an issue, but I'm glad your post was here, changing it to lowercase worked. Thanks!

Jeremy Castanza
Jeremy Castanza
12,081 Points

I've sent an email to support requesting an update on this as well. If I hear anything back, I'll update my post. In the meantime, Kyle and Derek are correct - simply changing the src to lowercase will fix the broken image.

6 months later... still broken.

Gari Merrifield
Gari Merrifield
9,597 Points

Almost Halloween, and the problem is STILL there... notice that in the video, the teachers copy is correct, using the lower case "kitt"... most Unix and Linux based file systems are case sensative, so they consider "slide-kitt.png" and "slide-Kitt.png" to be tow different files.

The issue is still present, if not for this thread I probably would have spent who knows how much time trying to figure this out.