Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Thomas Beaudry
29,084 PointsCan someone help me with this code challenge?
Unfortunately I cannot post my actual code I've written due to my devices browser. : <div class= "row"> I must be leaving something out? Thanks for ur help!!
1 Answer

Krzysztof Kucharzyk
Front End Web Development Techdegree Student 4,005 PointsI don't know what you are doing wrong but You have to define a class .row in a div inside div with class container. So your code suppose to look like this:
<div class="container">
<div class="row">
<div>
<h2>your text</h2>
<p>your text</p>
</div>
<div>
<h2>your text</h2>
<p>your text</p>
</div>
<div>
<h2>your text</h2>
<p>your text</p>
</div>
</div>
</div>

Thomas Beaudry
29,084 PointsYou are "the man" thats right on the money!! What I did wrong was I deleted " container" (because it wasn't mentioned in the video) and replaced it with just "row". Thank you so much Krzysztof!!

Krzysztof Kucharzyk
Front End Web Development Techdegree Student 4,005 PointsYeah no problem, anytime ;)
Thomas Beaudry
29,084 PointsThomas Beaudry
29,084 Points<div class= "row">?