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 Callout and Footer Sections

Challenge Task 4 of 4 Finally, give the div on line 26 a class that will offset it by 2 columns in the large grid.

totally confused, been working on this last bit all-day, getting no where fast....please help

index.html
<!DOCTYPE html>
<html>

<head>
  <title>Ribbit - A Treehouse Project</title>
  <meta name="viewport" content="width=device-width">
  <link rel="stylesheet" href="css/foundation.min.css">
</head>
<body>
<div class="row"> <div class="callout large-12 columns"> 
   <a href="#" class="button success radius">Sign up for Treehouse<i class="fi-arrow-right">


  <!-- Footer -->
  <div class="row main-footer">
    <div class="large-4 columns">
      <img class="th-logo" src="img/logo-footer.png" alt="logo">
      <p>
        <div class="large-2 columns"> 
        Our mission is to bring affordable Technology education to people everywhere, in order to help them achieve their dreams and change the world.
      </p>
      <p class="copyright">&copy; 2013 Treehouse Island, Inc.</p>
    </div>
     <div class="large-2 columns">
      <ul class="link-list">

        <li class="heading"><a href="#">Start learning free &rarr;</a></li>
        <li><a href="#">About Treehouse</a></li>
        <li><a href="#">Treehouse Blog</a></li>
        <li><a href="#">Treehouse Shop</a></li>
        <li><a href="#">Privacy Policy</a></li>
        <li><a href="#">Terms &amp; Conditions</a></li>
      </ul>            
    </div>
    <div class="large-2 columns">
      <ul class="link-list">
        <li class="heading"><a href="#">Browse our library &rarr;</a></li>
        <li><a href="#">Website Design</a></li>
        <li><a href="#">Web Programming</a></li>
        <li><a href="#">iOS Development</a></li>
        <li><a href="#">Android Development</a></li>
        <li><a href="#">Wordpress</a></li>
      </ul>
    </div>
    <div class="large-2 columns">
      <ul class="link-list">
        <li class="heading"><a href="#">Get in touch &rarr;</a></li>
        <li><a href="mailto:hi@teamtreehouse.com">Email us</a></li>
        <li>1(888)555-1234</li>
      </ul>
    </div>
  </div><!-- End footer -->      

</body>
</html>

@Paul Colon you need to add the widescreen video class in line 52 class="flex-video widescreen vimeo"> take a look at Foundation Docs : http://foundation.zurb.com/sites/docs/v/5.5.3/components/flex_video.html look at the advanced section.