Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to have 5 equal columns on a page i am building and i can't seem to understand how the 5 column grid is being used here http://domain7.com/mobile/tools/bootstrap/responsive/

Is the five column grid being demonstrated above part of the twitter bootstrap framework.

share|improve this question
You're looking at a very old version of the bootstrap. Are you looking to have a 5-column "responsive" grid on the (latest, i hope) bootstrap? – Andres Ilich Apr 30 '12 at 17:54
1  
I just realized that.The one stated is v1.3.0 and the current is 2.0.2.The latest version is a 12-column grid meaning i can have 2,3,4 and 6 equal columns.What i was asking is,if it would be possible to have 5 equal columns without having to change a lot of things. – sed Apr 30 '12 at 18:09
you can, yes, but it will require heavy modifications to some of the grid elements and also the responsive grid elements. Is your site responsive at all? It would be a bit easier to come up with an answer that way, otherwise it would be a lot of code. – Andres Ilich Apr 30 '12 at 18:13
Yes,the site is responsive but i would have to modify the grid elements too not the responsive part only imho. – sed Apr 30 '12 at 18:19
What im saying is that if the grid elements are modified to accommodate a 5-grid setup then the responsive feature will also have to be heavily modified to support them. – Andres Ilich Apr 30 '12 at 18:25
show 4 more comments

4 Answers

<div class="equal row-fluid">
    <div class="span2"></div>
    <div class="span2"></div>
    <div class="span2"></div>
    <div class="span2"></div>
    <div class="span2"></div>
</div>

.equal .span2 {
    width: 20%;
}
share|improve this answer
1  
that should be .equal .span2 { width: 20%; } – Studio4 May 13 at 16:05

Create a custom Bootstrap download for 5 column layout

Go to Bootstrap customization page and set the following variables (don't input semicolons):

@gridColumns:           5;
@gridColumnWidth:       172px;
@gridColumnWidth1200:   210px;
@gridColumnWidth768:    128px;
@gridGutterWidth768:    21px;

Download your build. This grid would fit into default containers, preserving default gutter widths (almost).

Note: If you are using LESS, update variables.less instead.

share|improve this answer

Use five divs with a class of span2 and give the first a class of offset1.

<div class="row-fluid">
    <div class="span2 offset1"></div>
    <div class="span2"></div>
    <div class="span2"></div>
    <div class="span2"></div>
    <div class="span2"></div>
</div>

Voila! Five equally spaced and centered columns.

share|improve this answer
This is nice! :) – Praveen Kumar May 13 at 16:33

I voted up Mafnah's answer but looking at this again I'd suggest the following is better if you're keeping the default margins etc.

.equal .span2 { width: 17.9%; }

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.