Reputation: 62704
Assuming I have a bootstrap 3 navbar with a navbar-brand containing text, how can I add a small subtitle that fits right underneath that navbar-brand?
Upvotes: 1
Views: 9043
Reputation: 362810
@cab's solution works, but here's another option that will not impact the height of the default navbar (due to increased padding):
.navbar-brand {
line-height:12px;
padding-top:20px;
padding-bottom:5px;
}
.navbar-brand small {
display:block;
font-size:10px;
}
Upvotes: 5
Reputation: 34642
This is one way of doing it:
HTML
<a class="navbar-brand" href="#">Project name<small>Tagline goes here</small></a>
CSS
.navbar-brand small {
display:block;
font-size:12px;
}
.navbar-toggle {top:10px}
@media (min-width:768px) {
.navbar-brand {
padding-top:20px;
}
.nav.navbar-nav a {
padding-top:30px;
padding-bottom:30px;
}
}
Upvotes: 3