I\'m using twitter bootstrap dropdown menu in a fixed navbar at the top of my page.
It all works fine but am having issues with the drop down menu items showing behi
Ran into the same bug here. This worked for me.
.navbar { position: static; }
By setting the position to static, it means the navbar will fall into the flow of the document as it normally would.