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 trialBenjamin Ho
1,068 PointsFoundation - Building Top Bar Challenge 4/5
<!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>
<!-- Top Bar -->
<div class="contain-to-grid">
<nav class="top-bar">
<a class="main-logo" href="#">Ribbit</a>
<p class="right hide-for-small-only">A Treehouse Project</p>
</nav>
</div><!-- Top Bar -->
</body>
</html>
I'm supposed set it so that it hides the paragraph for small devices. What did I do wrong?
1 Answer
Benjamin Ho
1,068 PointsSorry, had bad formatting. Fixed now + bump!