In bootstrap 3.0 I can wrap .container class with my class and set the width to my class to 980px
EX
<div class="maincontainer">
<div class="container">
//some content
</div>
</div>
CSS
.maincontainer {
max-width: 980px;
margin:0 auto;
}
That code will wrap my contents with 980px,
but in bootstrap 3.0.2 the author has change class .container to width not max-width in bootstrap 3.0.
So it is hard to set 980px for my layout!!
I'm using LESS css!
Any ideas?