One of the good things about Bootstrap is that grid does not work with fixed measures, but with relative to the parent that contains the elements. This way, if you change the size of the container , its operation, in principle, would not be affected.
There are many ways to change the size of the container , I would like to recommend two:
-
You can choose to change the CSS core of Bootstrap "bootstrap.min.css" where all CSS rules are specified that make Bootstrap work.
-
You can also create a specific rule in your own CSS that is set by Bootstrap . Example:
CSS
#miSection .container {
width: 1280px !important;
}
Personally, I would take the second one. Since I like to avoid touching the kernels of libraries and plugins if it's in my hand.