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 trialNafitha Mohamed
2,637 PointsNAVIGATION MENU
How do I float logo to left and nav menu to right? I want both logo and nav menu on the same line
1 Answer
Francisco Correa
7,322 PointsHi Nafitha! There are several ways to solve it. One of the simpliest js just float the navigation container to the right with the "right" value and float the logo to the left usign a "left" value.
.navigation { float: right; }
.logo { width: 350px; float: left; margin: 0 0 0 15px; }
There are other ways to do it for example using Flex Box (https://goo.gl/Avh1GP) I hope I have been helpful
PD: Don't forget to use clearfix when you use floats