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 trialJoe Mackey
20,418 PointsI added the same rows but number 3 fails?
Adding the 3 rows I typed row number one and all is well. i cut and past rows 2 and 3 and 3 fails with Bummer! Make sure you add the correct class to the third column. Where am I making the mistake? Thanks Joe
<!DOCTYPE html>
<html>
<head>
<title>Ribbit - A Treehouse Project</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-4">
<h2> stuff goes here</h2>
<p> more stuff here</p>
</div>
<div class="col-md-4">
<h2> stuff goes here</h2>
<p> more stuff here</p>
</div>
<div class="col-md-4">
<h2> stuff goes here</h2>
<p> more stuff here</p>
</div>
<div>
<div>
<h2>Delete photo & video based on a timer</h2>
<p>Learn how to write the code that downloads and displays messages, photos, and videos that timeout after a few seconds. Then create the code that deletes them from the back-end to make them "self destruct."</p>
</div>
<div>
<h2>Build an easily managed friends list</h2>
<p>Learn what Parse.com offers as a "backend-as-a-service" platform. Explore the user account management APIs provided by Parse.com and write the code to create and save a new user in a Parse.com data store.</p>
</div>
<div>
<h2>Store & retrieve data using cloud servers</h2>
<p>We'll teach you how to upload images, video files, and messages to Parse.com's cloud servers. Then learn how to retrieve the data by setting up custom queries that download and display them in the app.</p>
</div>
</div>
</div>
</body>
</html>
2 Answers
Chase Marchione
155,055 PointsHi Joe,
Looks like we need one more closing div tag, to close out the row:
<div class="container">
<div class="row">
<div class="col-md-4">
<h2> stuff goes here</h2>
<p> more stuff here</p>
</div>
<div class="col-md-4">
<h2> stuff goes here</h2>
<p> more stuff here</p>
</div>
<div class="col-md-4">
<h2> stuff goes here</h2>
<p> more stuff here</p>
</div>
</div>
I added in that last div, in order to accomplish that.
Hope this helps!
Martin Ellis
6,724 PointsHi Joe,
What you've done is technically correct but it looks like the challenge wants you to add the row and col classes to the pre-existing divs that are already in the code.
Hope this helps :)