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 How to Make a Website Creating HTML Content Build the Footer

img not displaying properly

... <img src="img/tritter-wrap.png" alt="Twitter Logo"> <img src="img/Facebook-wrap.png" alt="Facebook Logo">...html

this is my second time through the assignment. It displayed fine the first time.

Hi John,

Could you please update your post with the code that you are using, it could be an error in the code, and if it isn't at least we could rule that out as a possibility. If you aren't certain how to format code there is a helpful Markdown Cheatsheet you can reference to see how to do it, or follow these instructions:

Wrap your code with 3 backticks (```) on the line before and after. If you specify the language after the first set of backticks, that'll help us with syntax highlighting.

2 Answers

Inspecting the image URL I saw that you set the path with "Facebook-wrap" as the img name. If I'm correct the file is lowercase -> img/facebook-wrap.png

Try it and let me know.

Cheers.

All you need to do for it to work is to do the following:

  1. Go to your "img" folder and locate your "twitter-wrap.pgn" and "facebook-wrap.pgn"
  2. Remove the "-wrap" ending of those pgn's and it should work.

Let me know if it works. It works for me (I had the same problem).