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 trialRicky Logsdon
1,047 PointsBuild a Three Column Layout "Two Column isn't breaking up."
3 Answers
cedricc
37,590 PointsHello,
Can you provide your code to check what is wrong?
Ricky Logsdon
1,047 PointsFROM the contact.ttml <section id="primary"> <h3>General Information </h3> <p>I am just starting on web designing, but I'm hopeful that I can be up and running and writing code full time within the next year.</p> <p>If you would like to follow my journey and find out how I'm improving you can follow me on Twitter.</p> </section> <section id="secondary"> <h3>Contact Details</h3> <ul class="contact-info"> <li class="phone"><a href="tel:502-555-6400">502-555-6400</a></li> <li class="mail"><a href="mailto:ric@example.com">ric@example.com</a></li> <li class="twitter"><a href="http://twitter.com/intent/tweet?screen_name=riclogsdon">@riclogsdon</a></li> </ul> </section>
FROM the responsive.css
@media screen and (min-width: 480px) {
/****************************** TWO COLUMN LAYOUT ********************************/
primary { width: 50%; float:left; }
secondary { width: 40%; float:right; } }
@media screen and (min-width: 660px) {
}
cedricc
37,590 PointsThe best way to solve problem, by yourself.
Congratulations
Ricky Logsdon
1,047 PointsRicky Logsdon
1,047 PointsI found the issue. Thank you.
Ricky Logsdon
1,047 PointsRicky Logsdon
1,047 PointsHello, I finally got it to work. I had a typo. I redid the code and it worked just fine. But thank you. Have a great week.