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

HTML How to Make a Website Responsive Web Design and Testing Build a Three Column Layout

Alex Thomas
Alex Thomas
4,247 Points

my icons got left behind when creating a two column layout

My icons got left behind when creating a two column layout, what did i do wrong?

<div id="wrapper"> <section id="primary"> <h3>General Information</h3> <p>If you like what you see, feel free to contact me.</p>

    <p>Phone contact is most reliable</p>
  </section>
  <section id="secondary">
    <h3>Contact Details</h3>
    <ul class="contact-info">
      <li class="phone"><a href="tel:480-225-1436">480-225-1436</a>
    </li>
    <li class="mail"><a href="mailto:adt71@cox.net">adt71@cox.net</a>
    </li>
    <li class="twitter"><a href="http://twitter.com/intent/tweet?screen_name=@RitualofAlex">@RitualofAlex</a></li>
    </ul>
    </section>

1 Answer

Hi, it looks like you have an orphan "</section>" tag under your first paragraph. Try deleting it to see if that solves the issue.