I needed to completely remove the Bootstrap responsive feature, i ended up overriding the behavior with the following snippet:
.container {
width: 960px !important;
}
@media (min-width: 1px) {
.container {
max-width: 940px;
}
.col-lg-1,
.col-lg-2,
[...]
Full snippet: https://gist.github.com/ivanminutillo/8557293