Default is 30px, and I want to reduce it, let’s say to 5px. I saw some topics using code such as
.row.no-gutters {
margin-right: 0;
margin-left: 0;
}
.row.no-gutters > [class^=“col-”],
.row.no-gutters > [class*=" col-"] {
padding-right: 0;
padding-left: 0;
}
And put no-gutters class in HTML code. But when I changed those value to 5px, or -25px, it seems adding more space into gutter size, or no change at all. Wondering what is the correct way to reduce gutter size in bootstrap 3?
Thanks a lot.