I wouldn't use the !important property on the existing offset class, as it defines a pixel value and the whole point of using fluid is to use percentages.
Here's a formula that I came up with for creating your own offset for fluid rows.
@for $i from 1 through 12 {
.row-fluid .offset#{$i} {
margin-left: (6.382978723% * $i) + (2.127659574% * $i);
*margin-left: (6.329787233638298% * $i) + (2.0744680846382977% * $i);
}
}
So, let me explain what you're seeing here. This is a for loop using SCSS, used to write the offset1 - offset12 classes. This is only for a single media query, as you'll have to define define it 3 times (since the widths and offsets are changed in 3 separate media queries in the twitter bootstrap code). The basic principle is this:
margin-left = (width_of_span1 * x) + (margin-left_of_row-fluid_span* * x)
The value of x is equal to the number of columns you wish to offset, so, for .offset1 you would use 1 as the value of x. For .offset12 you would use 12 as the value of x.
You will also need to adjust one more style, as twitter bootstrap puts a margin-left: 0 on the :first-child element within the .row-fluid container. Now, the easiest way is to just add the !important attribute to your newly declared .row-fluid .offset* classes. You might also be able to do adjust their :first-child selector so that it reads:
.row-fluid [class*="span"]:first-child:not([class*=offset])
This would only apply the margin-left: 0 if the .span* element did NOT have any of the .offset* classes as well. Though, browser support for that type of thing is probably pretty limited.
spanclasses withwellor other classes meant for content. Doing so will inevitably blow out your grid, as many content classes add padding and margins of their own, which both affect the total outer width of the element. If you had 3.span4.welldivs in a single 12-column row, they wouldn't fit on the screen. Just a thought. – Jonathan Wilson Jul 19 '12 at 18:20