I need to disable responsive layout in Bootstrap, but I face some problems.
I replaced meta tag with:
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
And replaced the grid initialization in container with this:
.container {
.container-fixed();
@media (min-width: 200px) {
width: @container-lg;
}
@media (min-width: @screen-xs-min) {
width: @container-lg;
}
@media (min-width: @screen-sm-min) {
width: @container-lg;
}
@media (min-width: @screen-md-min) {
width: @container-lg;
}
@media (min-width: @screen-lg-min) {
width: @container-lg;
}
// min-width: 980px !important;
}
But I see some bugs in small display resolution in my code:
http://www.playground.obuh.by/
What did I do wrong?