I got the twitter bootstrap dropdown buttons successfully working, but I have a tiny problem. The black navbar here:
http://twitter.github.com/bootstrap/javascript.html#
This is work for me
//css
.arrow-right > .dropdown-menu:after {
content: '';
display: inline-block;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 6px solid #ffffff;
position: absolute;
top: -6px;
right: 10px;
}
.arrow-left > .dropdown-menu:after {
content: '';
display: inline-block;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 6px solid #ffffff;
position: absolute;
top: -6px;
left: 10px;
}
// html
//for left side dropdown menu
//for right side dropdown menu