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!
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

Jesse Amsden
1,833 PointsI can't figure out where i made an error... I can't progress on. Lesson "Build a Three Column Layout"
On my contact page, where we added <section id="primary"> and <section id="secondary">
I ran into a problem where half my code is highlighted red and I've spent half an hour trying to figure it out
I removed some private information, but i left the bare bones to see if there's any obvious mistakes.
<div id="wrapper>
<section id="primary">
<h3>General Information</h3>
<p>Insert Contact Information Here</p>
<p>Preferred communication via email</p>
</section>
<section id="secondary">
<h3>Contact Details</h3>
<ul class="contact-info">
<li class="phone"><a href="tel:555-6425">555-6425</a></li>
<li class="mail"><a href="mailto:j@gmail.com">j@gmail.com</a></li>
<li class="twitter"><a href="http://twitter.com/intent/tweet?screen_name=">@</a> </li>
</ul>
</section>
<footer>
</footer>
</div>
</body>
</html>
2 Answers

Mike Schaming
13,925 PointsHi Jesse- just to start you are missing an important piece of syntax in your opening Div. <div id="wrapper>
Try adding the closing "
That cleared it up in my workspace. Good luck!

Jesse Amsden
1,833 PointsTHANK YOU! I can't believe i missed that i combed over it so many times...