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 trialmohammed mayat
4,228 Pointsmove nav link to right
i want logo to appear on left and link on the right but after my last link contact us there seem to be lot of padding on the right how do i fix this, i am still working on website
1 Answer
Jonathan Grieve
Treehouse Moderator 91,253 PointsIt looks like your logo is where you want it! :-)
@media (min-width: 992px)
.navbar-toggleable-md
.navbar-collapse {
display: -webkit-box!important;
display: -webkit-flex!important;
display: -ms-flexbox!important;
display: flex!important;
width: 900px;
}
In navcar.scss try setting your width to 900px or reducing the percentage length of your navbar. What you're seeing is extra content space not padding space!