user3550879
user3550879

Reputation: 3469

Changing Bootstrap container margin width

I'm looking to override the container class CSS in my site which uses bootstrap. I have the style-page in the right spot but not sure which line to write to override .container's 'width' before changing to another width (when the window reduces). I want it to be wider by default.

<div class="container">

   // site content ...

Upvotes: 0

Views: 4175

Answers (1)

Cjmarkham
Cjmarkham

Reputation: 9681

There are a number of variables which you can change in order to modify certain styles that Bootstrap provides.

Here is the link to the container specific variables

Upvotes: 1

Related Questions