You can create a custom container and use it with the default container (just by rewriting the width). You can change the width to suit your needs:
CSS:
@media (min-width: 768px) { .my-custom-container{ width:600px; }} @media (min-width: 992px) { .my-custom-container{ width:720px; }} @media (min-width: 1200px) { .my-custom-container{ width:900px; }}
HTML:
<div class="container my-custom-container"> your content Goes here ....... </div>
source share