If I want to place an element on the right of the screen for example the final 3 spans and want white space to the left of them (not use the spans) is this possible to achieve on twitter-bootstrap and if so how? Thank you.
You could do something like this:
<div class="row">
    <div class="span9"></div>
    <div class="span3"></div>
</div>
And you can also do something like this:
<div class="row">
    <div class="span3 offset9"></div>
</div>
You can use pull-right and pull-left:
<div class="row">
  <div class="span3 pull-right"></div>
  <div class="span6 pull-left"></div>  
</div>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With