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

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

Pascal Houben
Pascal Houben
7,566 Points

Hey, my icons on the Contact Page don't move over to the right column if the two column layout is set in place!

What shall I do with the code of the icons??? Thanks!

Christopher Loyd
Christopher Loyd
Courses Plus Student 5,806 Points

Would you mind posting the code that you currently have, so this issue can be diagnosed?

3 Answers

Berkan Sonmez
Berkan Sonmez
3,403 Points
            <p><!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Berkan Sonmez | Marketer</title>
    <link rel="stylesheet" href="css/normalize.css">
    <link href='http://fonts.googleapis.com/css?family=Changa+One|Open+Sans:400,400italic,700,700italic,800' rel='stylesheet' type='text/css'>
    <link rel="stylesheet" href="css/main.css">
    <link rel="stylesheet" href="css/responsive.css">
  </head>
  <body>
    <header>
      <a href="index.html" id="logo">
        <h1>Berkan Sonmez</h1>
        <h2>Marketer</h2>
      </a>
      <nav>
        <ul>
          <li><a href="index.html">Portfolio</a></li>
          <li><a href="about.html">About</a></li>
          <li><a href="contact.html" class="selected">Contact</a></li>
        </ul>
      </nav>
    </header>
    <div id="wrapper">
      <section id="primary">
        <h3>General Information</h3>
        <p>You can more details about by using links below</p>
      </section>
      <section id:"secondary">
        <h3>Contact Details</h3>
        <ul class="contact-info">
          <li class="phone"><a href="tel:555-9465">555-9465</a></li>
          <li class="mail"><a href="mailto:berkan@tutoringo.com">berkan@tutoringo.com</a></li>
          <li class="twitter"><a href="http://twitter.com/intent/tweet?screen_name=tutoringo">@tutoringo</a></li>
        </ul>
      </section>
      <footer>
       <a href="http://twitter.com/tutoringo"><img src="img/twitter-wrap.png" alt"Twitter Logo" class="social-icon"></a>
       <a href="http://facebook.com/tutoringo"><img src="img/facebook-wrap.png" alt"Facebook Logo" class="social-icon"></a>
       <p>&copy; Berkan Sonmez 2014</p>
      </footer>
    </div>

  </body>

</html>
</p>
            ```
Berkan Sonmez
Berkan Sonmez
3,403 Points
            <p>@media screen and (min-width: 480px) {

  /******************************
  Two Column Layout
  ******************************/

  #primary {
    width:50%;
    float:left;
    }
  #secondary {
    width:40%;
    float:right;
    }



  /******************************
  Page Portfolio
  ******************************/

  #gallery li {
    width: 28.3333%;
  }

  #gallery li:nth-child(4n) {
    clear:left
  }



}



@media screen and (min-width: 660px) {

}</p>
            ```
Berkan Sonmez
Berkan Sonmez
3,403 Points

Have the same issue and here are the codes necessary