Search code examples
twitter-bootstrap-3mobile-website

How to make bootstrap nav bar scrollable via gesture?


enter image description here

I have a nav bar as shown as above. It is done using twitter bootstrap. However, there is alot of button.

Is it possible to make the whole nav bar scroll-able(via touch gesture) to see more buttons? (eg. right and left scroilable)


Solution

  • You might be able to apply this in your css:

    .navscroll {
       overflow-x: scroll;
    

    to your navbar giving you the horizontal scroll.