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 Content Layout with Grids

Evan Freeze
Evan Freeze
23,158 Points

Can't pass Challenge 4-of-4

It says to give the 1st column a class to hide it on small devices. I've tried both "hide-for-small" (foundation 4) and "hide-for-small-only (foundation 5) and it won't work with either (line 17). I've even tried putting either of those classes on other columns just in case I was crazy and can't get it to accept any of them. Am I missing something?

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.css">
  <link rel="stylesheet" href="css/my-styles.css" >
</head>
<body>

  <!-- Feature Copy -->
  <div class="ft row">

    <div>
      <div class="hide-for-small large-6 columns ft-icon rnd camera"></div>
    </div>

    <div class="large-5 columns ft-copy">
      <h2>Securely delete photos &amp; video based on a timer</h2>
      <p>
        Learn how to write the code that downloads and displays messages, photos, and videos that timeout after a few seconds. Then create the code that deletes them from the back-end to make them "self destruct."
      </p>
    </div>

  </div><!-- End Feature Copy -->

</body>
</html>
Chris Higgins
Chris Higgins
6,813 Points

Could you post in your CSS aswell

Evan Freeze
Evan Freeze
23,158 Points

It's just a code challenge, so there isn't any css for this specific one. It seems like I'm doing the exact thing it's asking for, it just keeps saying I did it incorrectly. There could be an issue with the code challenge, I just wanted some validation that I'm doing the right thing with the class name and not missing something totally obvious haha.