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

Ryan Davidson
Ryan Davidson
2,297 Points

I can upload the facebook-wrap.png and twitter.png files to my workspace, but they then don't save there and disappear

Below is my code for the footer. I have tried saving the facebook-wrap.png and twitter-wrap.png files into my workspace img folder but they don't remain there - they disappear when I use my workspace again. Has anyone found this or can suggest how to solve the issue?

Here is the code for my footer, which works when I place other images there: <a href="https://twitter.com/"> <img src="img/twitter-wrap.png" alt="twitter logo"> </a> <a href="https://www.facebook.com/"><img src="img/facebook-wrap.png" alt="facebook logo"> </a>

Ryan Davidson
Ryan Davidson
2,297 Points

It turns out I had some bugs in my HTML and CSS that I fixed by following the advice on testing web pages on the build a basic website track. I did have to upload the images a few times and the img folder was a bit buggy in the workspace using Firefox. It worked eventually. Thanks for the suggestion.

1 Answer

Yevgeniy Alexeyev
Yevgeniy Alexeyev
3,591 Points

It's hard to test it, but you can add absolute path to the image, , not relative.

Ryan Davidson
Ryan Davidson
2,297 Points

Thanks for the suggestion. It worked eventually (see my comment above).