hello,
does anybody know how to adjust the bootstrap container width?
Bootstrap Container Width
Moderator: General Moderators
-
anupriya26
- Forum Newbie
- Posts: 2
- Joined: Sun Nov 02, 2014 11:18 pm
- Location: India
Re: Bootstrap Container Width
I guess, you could try this!
Since you have not specified the number of columns, I have considered it for 3 column fixed width putting all the spans on single row.
<!DOCTYPE html>
<html>
<body>
<div class="container">
<div class="row">
<div class="span3">
span3
</div>
<div class="span6">
span6
</div>
<div class="span3">
span3
</div>
</div>
</div>
</body>
</html>
Hope, it helps your issue!
Since you have not specified the number of columns, I have considered it for 3 column fixed width putting all the spans on single row.
<!DOCTYPE html>
<html>
<body>
<div class="container">
<div class="row">
<div class="span3">
span3
</div>
<div class="span6">
span6
</div>
<div class="span3">
span3
</div>
</div>
</div>
</body>
</html>
Hope, it helps your issue!
-
vijaywebsol
- Forum Newbie
- Posts: 2
- Joined: Wed Dec 03, 2014 3:01 am
Re: Bootstrap Container Width
Go to the Customize section on Bootstrap site and choose the size you prefer. You'll have to set @gridColumnWidth and @gridGutterWidth variables.
For example: @gridColumnWidth = 65px and @gridGutterWidth = 20px results on a 1000px layout.
For example: @gridColumnWidth = 65px and @gridGutterWidth = 20px results on a 1000px layout.
Re: Bootstrap Container Width
You can customize any Bootstrap's components here. Only you need to set @gridColumnWidth & @gridGutterWidth variables.
After that download it..
After that download it..