I am following Michael Hartl's Ruby on Rails tutorial currently but decided to work with the newest Twitter Bootstrap 3. I am just experimenting around with the grid system but I can't seem to get the cols, no matter if it is col-sx-, col-sm-, col-md- or col-lg- to appear beside each other. I am using the sass-rails 4.0.1 gem and bootstrap-sass 3.0.3.0.
Here's my code:
<div class="container">
<div class="row">
<div class="col-md-1">
<h1>L</h1>
</div>
<div class="col-md-1">
<p>HH</p>
</div>
</div>
<div class="row">
<div class="col-md-5">
<h1>LOGO</h1>
</div>
<div class="col-md-7">
<a href="#">Some Link</a>
<a href="#">Some Link</a>
</div>
</div>
</div>
and this is how it is rendered: http://imgur.com/oCemGWS
How do I get the columns to appear beside each other as they should?