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

CSS How to Make a Website CSS: Cascading Style Sheets What is CSS?

while working in the workspace and following the tutorial, none of my images show. does anyone know why?

while working in the workspace and following the tutorial, none of my images show. does anyone know why?

Can you post the html markup for the images in question? The most likely possibility is that the file paths aren't 100% right. You can use the "Markdown Cheatsheet" to get info on posting code.

2 Answers

<!DOCTYPE html> <html>

</header>
<section>
 <ul>
  <li>
    <a href="img/image1.jpg">
      <img src="img/image1.jpg" alt="">
      <p>Experimentation with color and texture.</p>
    </a>
   </li>
  <li>
    <a href="img/sg-heating-profile.jpg">
      <img src="img/sg-heating-profile.jpg" alt="">
      <p>Playing with blending modes in Photoshop.</p>
    </a>
   </li>
  <li>
    <a href="img/smart car think green.jpg">
      <img src="img/smart car think green.jpg" alt="">
      <p>Trying to create an 80's style of glows.</p>
    </a>
   </li>
  </ul>
</section>
<footer>
  <a href="https://www.facebook.com/pages/SG-Heating-Air-Conditioning-LLC/432992693440224"><img src="img/facebook_logo-2.jpg" alt="Facebook Logo"></a>
  <p>&copy; 2014 Kendra Yu.</p>
</footer>

</body> </html>

Hi Scott,

I changed the images back to the defaults, and they all loaded for me.

A few things:

  • Do you have images with those filenames in your img folder? It's great to experiment by changing things up; just be sure to upload any new images via file - > upload file to your img folder in the Workspace.
  • When there are spaces in the filename, use %20 in URL paths, e.g. src="img/smart%20car"

Let me know if that helps!