http://benwhitehead.github.io/bootstrap-big-grid/
That page states that the gutter width is set to 30px. I'm not sure this is the case. I don't see any left- or right-paddings set in the CSS file.
When I defined my columns using: .col-rt-6, they had no gutters.
I had to add a custom style to my page like so:
.col-rt-6 {
position: relative;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
}
I'm looking through the less files and don't see anywhere that it sets @grid-gutter-width
However I'm not LESS expert... Can you please check into this and verify there are gutters being set?
Thanks,
Nick