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 Framework Basics Build a Website with Foundation Building the Top Bar

Are the questions in this exercise not up to date?

The documentation on zurb shows that the answer to Question 4 should have been --

class="right hide-in-small-only"

but the actual answer that passed was

class="right hide-in-small"

Is this due to an update that's not reflected in the quiz?

index.html
<!DOCTYPE html>
<html>

<head>
  <title>Ribbit - A Treehouse Project</title>
  <meta name="viewport" content="width=device-width">
  <link rel="stylesheet" href="css/normalize.css" >
  <link rel="stylesheet" href="css/foundation.min.css">
  <link rel="stylesheet" href="css/my-styles.css" >
</head>
<body>

  <!-- Top Bar -->
  <div> 
    <nav>
      <a class="main-logo" href="#">Ribbit</a>
      <p>A Treehouse Project</p>
    </nav>
  </div><!-- Top Bar -->


</body>
</html>

1 Answer

Kevin Korte
Kevin Korte
28,148 Points

So something you'll stumble across a lot as a developer, it says in the description of the lesson it's on Foundation 4, when the current version is foundation 5, so you'd have to use foundation 4's documentation to help you answer the questions.

It's something you'll always have to watch for, to make sure you're using the correct versions documentation.