Using twitter bootstrap v3 rc1.
I have three .sub-content-block divs on my page, with .make-column(4); applied to each.
I have tried adding .make-row; to a div that contains all three of the sub-content-block divs, and set it to .make-column(12) too, in hopes of having spacing between each div.
As you can see in the screenshot, there is no spacing between each div, if I do not have a background color, it looks like there is some spacing, but thats more so padding than spacing.
The gutter width is set to 30px in the variables.less file.
Any clarification as to why there is no spacing between each div is appreciated.
.sub-content-block {
.make-column(4);
background: @box-bg-color;
a {
color: #fff;
text-decoration: none;
}
a:link {
color:#fff;
padding:5px;
background: @block-link-hover;
}
a:hover {
background: #000;
}
}
<div class="sub-content-block">
<h4>Get Fast Quote</h4>
<p>Get a fast quote, or schedule an on-site estimate.</p>
<p><a href="">Learn More</a></p>
</div>
<div class="sub-content-block">
<h4>Get Fast Quote</h4>
<p>Get a fast quote, or schedule an on-site estimate.</p>
<p><a href="">Learn More</a></p>
</div>
<div class="sub-content-block">
<h4>Get Fast Quote</h4>
<p>Get a fast quote, or schedule an on-site estimate.</p>
<p><a href="">Learn More</a></p>
</div>