I am trying to use bourbon neat grid, and trying to get two column side by side with 8:4 ratio But second div goes underneath the first.
<div class="container">
<section id="content">
<div id="content-area">
<div id="block-homepage-homepage-featured-hero" class="block"></div>
<div id="block-views-tv-guide-block-1" class="block"></div>
</div>
</section>
</div>
I have following css from my custom scss
> #content { @include span-columns(12);
#block-homepage-homepage-featured-hero { @include span-columns(8 of 12); }
#block-views-tv-guide-block-1 { @include span-columns(4 of 12); } }
And following from layout.sass
.container
@include outer-container
margin-left: auto
margin-right: auto
width: auto
Looking at generated output for both block it appear in firebug as follows: block-homepage-featured-hero
float: left;
display: block;
margin-right: 2.12766%;
width: 65.95745%;
block-views-tv-guide-block-1
float: left;
display: block;
margin-right: 2.12766%;
width: 31.91489%;
Edit I found the issue. there is an extra div within section content. but is empty. I cant get rid of it. So question now how to define its width to 0 so it wouldnt affect the columns.
<div class="container">
<section id="content">
<div id="content-area">
<div id="block-homepage-homepage-featured-hero" class="block"></div>
<div id="block-views-tv-guide-block-1" class="block"></div>
**<div id="extra-empty-dive></div>**
</div>
</section>
</div>