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 Form and Buttons Panel

Sunho Choi
Sunho Choi
14,817 Points

Offset the column. What is the correct answer?

I have tried putting the large-offset-1 to the div at line 18 for the answer and it seems to be wrong. What is the correct answer for this challenge?

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>

  <!-- Form Panel -->
  <div class="row">
    <div class="large-12 columns">
      <div class="rnd panel">
        <div class="row">
          <div class="large-offset-1 large-11 columns">
            <form>
              <p><strong>Enter your number, we'll text you the link:</strong></p>
              <input type="text" placeholder="Phone Number">
              <button type="submit" class="btn-submit button">Submit</button>
            </form>
          </div>
          <div class="large-5 columns">
            <p><strong>Visit an app store to download the app now!</strong></p>
            <a class="btn-dl rnd" href="#">iOS</a>
            <a class="btn-dl rnd" href="#">Android</a>
          </div>
        </div>       
      </div>
    </div>
  </div><!-- End Form Panel -->

</body>
</html>

2 Answers

Hi Sunho,

That's the correct class.

The classes that were already there were "large-5" and "columns"

Somehow "large-5" got changed to "large-11" which is causing it not to pass.

Sunho Choi
Sunho Choi
14,817 Points

I realized that after submitting this question. Thanks!