Your original question was a bit obscure, so I had to guess if something like this was what you were.
<div class="container"> <div class="row"> <a href="#" class="btn pull-right">Button 2</a> <a href="#" class="btn pull-right">Button 1</a> <h1>My fancy title</h1> </div> </div>
After editing the jsfiddle example, I would say that my solution should work if you use download. For some reason your css has .pull-right{float:none;}
, resulting in pull-right not working.
Here's a simple demonstration of your code with the changes - this is the button in front of h1
and .pull-right{float:right;}
added at the end of css
http://jsfiddle.net/Arkkimaagi/KFsM6/1/
source share