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 Changing the Appearance of the Carousel

Jess Hines
Jess Hines
5,411 Points

Slide 4 Image Doesn't Display [Solution]

My slider looked odd because the last slide, the yellow one was only half-filled in because the image link was broken. I didn't think HTML or CSS was case sensitive, but I found that the reference to the picture in slides.html was "slide-Kitt.png" whereas the actual file name in the img folder is 'slide-kitt.png' (lowercase k). Changing that in index.html fixed it.

Mod Note - Added solution tag to post title so folks know you don't need assistance.

Please rephrase the title as 'Slide 4 Image Display Fix' or something like that, because the title says that you have a problem, but you have a fix for a problem.

1 Answer

I found the solution to it: on the "slide 4" div, there is a slight typo. replace <img src="img/slide-Kitt.png"> with <img src="img/slide-kitt.png"> small capitalization typo.