The div container has the following max-width specified in the media request as default at boot time.
@media (min-width: 768px){ .container{ max-width:750px; } } @media (min-width: 992px){ .container{ max-width:970px; } }
To override this, add the style below to the stylesheet
// This should be added in the default styles, and not in the media request. Container {Margin: 0; upholstery: 0; }
@media (min-width: 768px){ .container{ max-width:100%; } } @media (min-width: 992px){ .container{ max-width:100%; } }
James source share