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 trialmalcolm mowlam
3,856 Pointschallenge task 3 of 4 css layout basics
/* Complete the challenge by writing CSS below */
.clearfix::after {
content: "";
display: table;
clear: both; }
.footer-nav { float: left;} .footer-nav li { float: left; }
.logo { float: right; }
<!DOCTYPE html>
<html>
<head>
<title>Getting Started with CSS Layout</title>
<link href='https://fonts.googleapis.com/css?family=Varela+Round' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="page.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<footer><clearfix::after>
<img class="logo" src="city-logo.svg" alt="logo">
<ul class="footer-nav">
<li><a href="#">Ice cream</a></li>
<li><a href="#">Donuts</a></li>
<li><a href="#">Tea</a></li>
<li><a href="#">Coffee</a></li>
</ul>
<p class="copyright">©2015 The Best City.</p>
</footer>
</div>
</body>
</html>
malcolm mowlam
3,856 PointsStill stuck on it
3 Answers
malcolm mowlam
3,856 PointsI've finished both of them now thanks for your help
Mark Sebeck
Treehouse Moderator 37,799 PointsMalcolm, glad you are getting help from the Community. As Steven said I would ask you not to post the same questions multiple times. It just clutters up the pages and makes it hard to determine if a question has been solved or not. I deleted a few that were clearly duplicates that were answered in other questions. Also as always thank you Steven for your contributions.
malcolm mowlam
3,856 Pointsthanks mark i am grateful for all the help received and really enjoying the course thank you all you are a great bunch
malcolm mowlam
3,856 PointsI'm not stuck on2 I'm stuck on task 3
malcolm mowlam
3,856 PointsThanks mark I will try not to do the same question over again all this is new to me because I have been a driver for many years but with all of your help I am making progress thank you all
Mark Sebeck
Treehouse Moderator 37,799 PointsYou're welcome Malcolm. Glad you are making progress and please keep asking questions when you get stuck. There a great bunch of people here to help you.
Steven Parker
231,236 PointsSteven Parker
231,236 PointsThis appears to be one of 4 exact duplicates of the same question. Please post questions only once!
You might want to delete the duplicates, click the little grey rectangle with the 3 dots in it to reveal the delete option.