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 Organize with Unordered Lists

Les Sula
PLUS
Les Sula
Courses Plus Student 1,576 Points

How to get the project files into the workspace?

I've tried everything I can think of. I downloaded the stupid files onto my computer and tried to drag them, or cut and paste them into the workspace. It doesn't work, and there is no sidebar like there is in the demo video. I've gone through the exercise three times, typed the code and cut and pasted the whatever you call 'ems. Checked my work and it said was doing great (load of crap), then when I go back to watch the stupid video to try to figure out how to do this correctly, then go back to my work - it's gone. This sucks!

I'm dead in the water. Any one care to help?

Thank You!

index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Nick Pettit</title>
  </head>
  <body>
    <header>
      <a href="index.html">
        <h1>Nick Pettit</h1>
        <h2>Designer</h2>
      </a>
      <nav>
        <ul>
          <li><a href="index.html">Portfolio</a></li>
          <li><a href="about.html">About</a></li>
          <li><a href="contact.html">Contact</a></li>
        </ul>
      </nav>
    </header>
    <section>
    </section>
    <footer>
      <p>&copy; 2013 Nick Pettit.</p>
    </footer>
  </body>
</html>

3 Answers

Wolfgang Warneke
Wolfgang Warneke
10,845 Points

Can you still see the top bar menu with "File Edit View Help"? If so then go to View and click Show Sidebar. You should be able to upload files into your project from the File dropdown menu by selecting Upload file? Let me know if this doesn't work out. Which browser are you using?

Les Sula
PLUS
Les Sula
Courses Plus Student 1,576 Points

Hello Wolfgang, Thank You so much for your reply. I was excited. I thought that surely this is the answer, but no. I see the menu bar that you're talking about in the demo video, but when I go to the workspaces screen to do my tasks there is no such menu bar on top - nothing where I could select "view". I am using Google Chrome. Hope to hear from you again soon. Thanks Again.

Wolfgang Warneke
Wolfgang Warneke
10,845 Points

Okay, just to clarify, are you talking about working on the project in Workspaces or are you working on a code challenge exercise? If this is just for the code challenge, then keep in mind that the files an exercise calls for exist already in the environment of the challenge and you just need write the code to reference them. So for the code challenge, adding this image tag (inside the li tags, inside the ul tag, inside the section tag), will work by itself already, with no need to upload anything.

<li><img src="numbers-01.jpg" alt="" /></li>

There is a place to click in the exercise to preview the result to check that it works. So if this is actually the problem, then just realize that the files are already there in the temporary environment of the exercise.

On the other hand if this is for Workspaces itself on a project, try "Ctr + Shift + H" (win) or "Cmd + Shift + H" (mac) to display the sidebar. I would also try it out on a different browser.

If none of that helps, let me know. Sorry if my first post was referring to the wrong problem; I may have had a semantic misunderstanding of the term 'workspace'. Hope this helps out!