I'm trying the Responsive Grid System for the first time and having real trouble getting my columns to sit side by side. I'm only using a two column grid for some of the design elements and centered content for the rest.
Here's the relevant bit of html:
<div class="section group" id="about">
<div class="col span_1_of_2" id="p1">
<p>Lorem ipsum dolor sit amet</p>
</div>
<div class="col span_1_of_2" id="p2">
<p>Lorem ipsum dolor sit amet</p>
</div>
</div>
and css:
.section {
clear: both;
padding: 0px;
margin: 0px;}
.col {
display: block;
float: left;
margin: 1% 0 1% 1.6%;}
.span_2_of_2 {
width: 51.8%;}
.span_1_of_2 {
width: 49.2%;}
Why are my columns lying in one column instead of side by side? What am I missing?
(you can find the responsive grid here)
Thanks everybody