Rolando
Rolando

Reputation: 62704

How to put text underneath a navbar-brand in bootstrap?

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

Answers (2)

Carol Skelly
Carol Skelly

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;
}

http://bootply.com/106312

Upvotes: 5

Christina
Christina

Reputation: 34642

This is one way of doing it:

DEMO: http://jsbin.com/AFiNehIz/1/edit


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

Related Questions