I'm trying to implement four-column rows with the @include span-columns mixin:
div.people {
@include outer-container(80%);
.researchers {
@include span-columns(12);
text-align: center;
}
.researcher {
@include span-columns (3 of 12);
@include omega(4n);
}
}
my html-markup looks like this:
<div class="people">
<header>
<h1>PEOPLE</h1>
</header>
<div class="researchers">
<div class="researcher">
<a href="/veerle-buffel.html">
<%= image_tag "sarah-van-leuven.jpg" %>
<p>Veerle Buffel<br>Doctoral researcher</p>
</div><!-- .researcher -->
<div class="researcher">
<a href="/elise-rondelez.html">
<%= image_tag "sarah-van-leuven.jpg" %>
<p>Elise Rondelez<br>PhD researcher</p>
</div><!-- .researcher -->
...
</div><!-- .researchers -->
</div><!-- .people -->
but instead of four columns I only get two-column rows:
how can I fix this, so I get a four elements per row instead of two.
thanks for your help,
Anthony