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 trialmelissa brown
4,670 Pointsfloat logo to the left nav bar moves up slightly
i noticed that when you float the logo to the left the nav bar moves up slightly. Is there anyway to keep it down. they seem to affect each other. eg if i increase the width of the nav the logo will move up.
1 Answer
Rich Bagley
25,869 PointsHi Melissa,
Hope I'm understanding what you need correctly.
If you mean to keep the navigation below the floated logo you could use a clear, e.g.
.navigation {
clear: both;
}
The .navigation
class is just used as an example but you can apply the clear to whatever class you need for your navigation.
The All About Floats article on CSS Tricks is a useful article, particularly the Clearing the Float section in this case.
Hope that helps.
-Rich