Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add additional fixed bar to Twitter's Bootstrap navbar?

See picture below - this additional bar should always go with original bar (.navbar .navbar-fixed-top).

example picture

like image 678
LA_ Avatar asked Feb 12 '12 19:02

LA_


1 Answers

Use modified .subnav-fixed class. Needed modifications:

height: auto;
left: auto;
right: 100px;
width: 300px; 

bootstrap.css doesn't contain .subnav and .subnav-fixed classes. You can find them here.

like image 116
Oleg Avatar answered Oct 05 '22 10:10

Oleg