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 trialCameron Cochran
Front End Web Development Techdegree Student 8,781 PointsChallenge Task 2 of 4 in CSS Basic Layout is saying this isn't right but I can't figure out where the problem is?
The task is to line up the list items inside the .footer-nav side by side.
.footer-nav li { float: left; }
.logo { float: right; }
.clearfix::after { content: ""; display: table; clear: both; }
3 Answers
KRIS NIKOLAISEN
54,971 PointsIn the challenge there is a note:
Important: In each task of this code challenge, the code you write should be added to the code from the previous task.
It looks like you are missing some of the code for task 1.
Cameron Cochran
Front End Web Development Techdegree Student 8,781 Pointsright on! But I actually passed the first challenge and didn't erase anything from the code I wrote so I am still left confused. Any other ideas??
Cameron Cochran
Front End Web Development Techdegree Student 8,781 Pointsfigured it out. I needed to keep the targeted item .footer-nav and float it left as well as the .footer-nav li element. Thanks so much for helping me, Kris.