Take a look at this picture:
I want the dropdown menu items to be stack from left to right (horizontally). I cannot seem get this to work, tried using \"l
To add to @dj.cowan's solution, I removed the .navbar-nav position property utilizing instead the default .navbar position, which then made the dropdown 100% width of the page. I then added float:right to the li to lineup under navbar-right.
li.dropdown {position: static; float:right}
.dropdown-menu {width: 100%;}
.dropdown-menu > li {display: inline-block;}