How to change the bootstrap css width into 1000px? [closed]

CSS override:

body .container {
    width: 100%; !important;
}

Or to a fixed width:

body .container {
    width: 1000px; !important;
}

But if you use bootstrap-responsive, you will lose the reponsiveness so you will need to configure those too in your CSS declarations.

Leave a Comment