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

General Discussion

Getting past the Code Challenge: Social Media Links. Task 1 of 2.

Hi there,

I'm having trouble getting past Code Challgenge: Add Social Media Links.

Challenge task: 1 of 2.

Here is the link to the code challenge http://teamtreehouse.com/library/add-social-media-links

Here is a screen shot of the bummer message: http://i.imgur.com/QB1XFxM.png

Here is a screen shot of the code I submitted: http://i.imgur.com/oXXIKvT.png

Am I doing something wrong?

Thanks for any help you can provide.

Respectfully, Phillip

...

2 Answers

Inside your footer element, where you are including facebook-wrap.png and twitter-wrap.png, change the direction of the 'slash' from back-slash to forward-slash in the 'src' section of the 'img' tag, which shows the path to the image file.

You have written this:

<img src="img\facebook-wrap.png" alt="Facebook">
<img src="img\twitter-wrap.png" alt="Twitter">

It should be:

<img src="img/facebook-wrap.png" alt="Facebook">
<img src="img/twitter-wrap.png" alt="Twitter">

Yep. Silly typo.

Thank you for your help Anthony!

-Phillip

No problem at all - good luck with your progress :)