1

I am using twitter bootstrap navbar and list items are shown out of navbar when I minimise my browser to some small size and scroll to the end list item. This is what looks as below.

Navbar when browser is maximised:

enter image description here

Navbar when browser is minimised:

enter image description here

I would like to have the items stick fixed to the navbar even though the browser is minimised.

Nikola K.
  • 7,093
  • 13
  • 31
  • 39
usercode
  • 309
  • 4
  • 20

2 Answers2

0

http://davidwalsh.name/demo/css-fixed-position.php

something like this? (the yellow box saying "Wherever you go, I will find you!")

if yes, then change position to fixed for NAVIGATION.

position:fixed;

(css)

0

Define min-width to your Navbar. For example write like this:

.Navbar{
 min-width:1000px;
}
sandeep
  • 91,313
  • 23
  • 137
  • 155