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

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

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

Try using this one

   ```
      <img src="img/slide-Kitt.png" alt="" >
      ```

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.

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

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.

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.