1
Well, I have always developed bootstrap websites and never modified the standard container size which is 1170px because there was never a need. Now I have a 1900 wide layout.
I also always use the sequence col-Md-12 col-Sm-12 col-Xs-12
What is the correct procedure to adapt the container the size of my layout? I have to use the -lg- to develop websites whose screen is larger than 1200px?
I think you have to overwrite your css to the bootstrap in the container.
container{max-width:1900px;width:100%}
, only this should solve. Make sure your css are called after those of bootstrap– Miguel
Try using class container-Fluid instead of container.
– Guilherme Guini