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

Andy Tan
Andy Tan
35,969 Points

Foundation - Create a round button

Hi There

I'm trying to answer the question "give the button a class that will add a border radius on each side", and my code is as follows, but for some reason it keeps returning an error

The button has the class of:

class="button success round"

Yet this still returns an error, do you know what I'm doing wrong

Do you know what i'm doing wrong?

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 round success ">Sign up for Treehouse<i class="fi-arrow-right"></i></a>
    </div>
  </div>

  <!-- Footer -->
  <div class="row main-footer">
    <div class="large-4 columns">
      <img class="th-logo" src="img/logo-footer.png" alt="logo">
      <p>
        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>

1 Answer

 <a href="#" class="button success radius">Sign up for Treehouse<i class="fi-arrow-right"></i></a>
Andy Tan
Andy Tan
35,969 Points

Legend, its works!!!

Thanks so much =)