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

Jonathan Leon
Jonathan Leon
18,813 Points

the kitt image isn't referenced correctly in the workspaces, it's lowercase k

nothing else :)

Brian Haucke
Brian Haucke
13,717 Points

Yep. I'm sure you did this already, but once I changed the img src to "img/slide-kitt.png" the image appeared successfully on the page. Here's where to fix the code just in case anybody else wants to fix it:

In index.html:

<div class="slide yellow"> <div class="grid-half"> <h2>KITT</h2> <p>Turn your car into KITT from Knight Rider</p> <a href="#" class="button">Check it Out</a> </div> <div class="grid-half"> <img src="img/slide-kitt.png" alt="" /> </div> </div><!--/Slide 4-->

Thanks! :)