Gutter Width is not set
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
@nyoung697 Thanks for the issue, I'll see if I can find some time to look into this.
As far as I recall the code is using the functions that bootstrap provides, so perhaps it's a change in behavior between versions of bootstrap.
@nyoung697 I've submitted a pull request that addresses this issue. Hope you still find it useful!