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

HTML

No image shows up. Tried several in the workspace. Can you see what is wrong?

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Ryan Christie | Designer</title> <link rel="stylesheet" href="css/normalize.css"> <link href='http://fonts.googleapis.com/css?family=Changa+One|Open+Sans:400italic,700italic,400,700,800' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/main.css"> </head> <body> <header> <a href="Index.html" id="logo"> <h1>Ryan Christie</h1> <h2>Designer</h2> </a> <nav> <ul> <li><a href="index.html" >Portfolio</a></li> <li><a href="about.html" class="selected"> About</a></li> <li><a href="contact.html"> Contact</a></li>
</ul>
</nav> </header> <div id="wrapper"> <section> <img src="img/nick.jpg" alt="Picture of Nick" class="profile-photo"> <h3>About</h3> <p> So far this has been a good class. Not sure why the pic isn't showing.</p> </section> <footer> <a href="http://twitter.com/Cooks_8"><img src="img/twitter-wrap.png" alt="Twitter Logo" class= "social-icon" ></a>

    <a href="http://facebook.com/ryan.christie.8"><img src="img/facebook-wrap.png" alt="Facebook Logo" class= "social-icon"></a>
    <p>&copy; 2014 Ryan Christie.</p>
  </footer>
</div>
</body>

</html>

Well I can't see an error, hmmm. did you check the browser dev tools for helpful error messages?

Well I noticed you have no opening body tag and no head tag But can't be the problem since with your code in an workspace from creating an website I see the pictures. Perhaps you just have problems downloading the images into the workspace.

Hi Ryan,

Can you post a snapshot of your workspace?

https://teamtreehouse.com/forum/workspace-snapshots

3 Answers

Thien Nguyen
Thien Nguyen
20,555 Points

yeah, I don't see anything wrong with your code. Are there images in the img folders. Definitely a screenshot of the workspaces would help us access the situation. Check the img path.

The images are there in the workspace. Because the main page images work and when i click on the picture that is not showing up in workspace (side list folder) it shows a preview. Could be a browser issue I will check there. Thanks for the looks.

It was a Chrome issue. It's not refreshing correctly when I save changes. If I close the browser out and reload the course the changes show. The picture shows up now. But when I add the border-radius nothing changes until i close right out and restart the browser. Thanks again for the help.