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 trial

CSS

Sam Katz
Sam Katz
2,986 Points

what is navbar default? it's not in the navbar documentation.

Navbar default is mentioned in the video, but not in the documentation. If I want to override the hover link background color, should I use something else?

1 Answer

Tray Denney
PLUS
Tray Denney
Courses Plus Student 12,884 Points

Navbar-default is a Bootstrap class used to style the provided Navbar. To override Bootstrap styles, you would link your custom style sheet after the Bootstrap stylesheet like:

<link rel="stylesheet" type="text/css" href="Bootstrap style sheet">
<link rel="stylesheet" type="text/css" href="Custom style sheet">

Without knowing which video you watched, this is the only explanation I have for what the "navbar-default" could be.