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

Magnus Benoni
Magnus Benoni
31,059 Points

To pull the column on line 25 over by 1 column I thought I could add "large-pull-1" but it is not accepted.

The div has a class "large-5" so I added "large-pull-1". Tried all possible numbers but not accepted as answer.

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-5 columns large-offset-1">
            <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 large-pull-7 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>

3 Answers

Guil Hernandez
STAFF
Guil Hernandez
Treehouse Teacher

Hi Magnus Benoni,

Since the video is on Foundation 4, the accepted answer doesn't require the large- prefix. I tried pull-1 just now and it passed.

You can learn about the updates made to Foundation's source order and visibility classes here. :)

Hi Magnus,

That's weird. I even tried to add "pull-1" but does not work anything and also have checked Foundation documentation - Source Ordering

Guil Hernandez solution?

Magnus Benoni
Magnus Benoni
31,059 Points

Thanks Guil, it is a little confusing learning Foundation 4 when Foundation 5 is out now. But the link was clear about the updates :-) It was strange because I also tried to add "pull-1" and it would even not accept it. Today I tried again and it worked. Must have been some cache problems.