I need help positioning a single button above a list, with the button to the right.
Whenever I try using the pull-right class on the button (or its containing div), the button ends up being covered by the list.
<div>
<div class="pull-right">
<button type="button" class="btn btn-default">Add</button>
</div>
<ul class="list-group">
<li class="list-group-item">Lorem ipsum 1</li>
<li class="list-group-item">Lorem ipsum 2</li>
<li class="list-group-item">Lorem ipsum 3</li>
</ul>
</div>
Check out the live example here: http://jsfiddle.net/paulbau/384YH/