skip to Main Content

I have downloaded Bootstrap 3.0 which have default width of 1170px.
my layout has been designed under 990px width.

how can i make it work under 990px?

2

Answers


  1. You can customise it by default – http://getbootstrap.com/customize/

    Login or Signup to reply.
  2. If you use bootstrap with no responsive design you can simply override .container class in your styles.css like

    .container {
      width: 990px;
    }
    

    but if you want your site to be responsive with max-width centered block equal to 990px, you can do this in your css file

    .container {
      max-width: 990px;
    }
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search