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

CSS How to Make a Website CSS: Cascading Style Sheets Use ID Selectors

When I try to preview after changing the background color tto orange, it asks me to save or open the file??

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Seth Hinkle | Designer></title>
    <link rel="stylesheet" href="css/normalize.css">
    <link rel="stylesheet" href="css/main.css">
  </head>
  <body>
    <header>
      <a href="index.html">
        <h1>Skare Krow Design Inc</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">Contacts</a></li>
        </ul>
      </nav>
    </header>
    <section>
      <ul>
        <li>
          <a href="image02/dead tree.jpg">
            <img src="image02/dead tree.jpg" alt="">
            <p>Tattoo Design Of A Dead Oak Tree.</p>
          </a>
        </li>
        <li>
          <a href="image02/Sad Donald Duck.jpg">
            <img src="image02/Sad Donald Duck.jpg" alt="">
            <p>Tattoo of a sad looking Donald Duck, designed by Seth Mosby Hinkle.</p>
          </a>
        </li>
        <li>
          <a href="image02/Rose Portrait.jpg">
            <img src="image02/Rose Portrait.jpg" alt="">
            <p>A beautiful Rose Portrait tattoo, designed by Rachel Hinkle.</p>
          </a>
        </li>
        <li>
          <a href="image02/Clown Moon.jpg">
            <img src="image02/Clown Moon.jpg" alt="">
            <p>Tattoo of a Festive Clown Moon, done by Seth Mosby Hinkle.</p>
          </a>
        </li>
        <li>
          <a href="image02/Wikked Iron Cross.jpg">
            <img src="image02/Wikked Iron Cross.jpg" alt="">
            <p>Tattoo of a Sinister Iron Cross, designed by Seth Mosby Hinkle.</p>
          </a>
        </li>
      </ul>
    </section>
    <footer>
      <a href="http://twitter.com/skrow81"><img src"img/twitter-wrap.png" alt="Twitter logo"></a>
      <a href="http://facebook.com/seth.hinkle2"><img src"img/facebook-wrap.png" alt="Facebook logo"></a>
      <p>&copy; Seth Mosby Hinkle.</p>
    </footer>
  </body>
</html>

So after I created the main.css file, I moved it to the normalize.css file, and then linked it inside my index.html file under the normalize. I typed the body element inside my main.css file, save and tried to preview, but the browser wouldn't open. Instead, it kept asking me this:

Do you want to download or save file LGLTJ9RV from port-80-hpknpcb7yy.treehouse-app.com?

When I do either, it asks me to open file with another file. did I miss something?

You are missing an = sign for src in your footer img files.

Fixed the src problem, but still having same problem with browser. I can not preview my work, when it does show up, it is in complete default, no images, broken links, default color, etc

2 Answers

I am having the same problem.

Even after i delete the style links, both of them, save and preview, it's doing the same thing, is this a problem with treehouse?