Earlier quoted context omitted.
So how do you find what to adjust in the CSS? Just read through it until you figure it out? For example, if I wanted to make four columns instead of three?
You don't have to edit the CSS at all. You don't even have to open the file, ever, to use Bootstrap. Just link it in the head of your document like any stylesheet and use the class names from the documentation. Want something on your page to be 3 columns wide? ... Want to make it 4 columns wide instead? ...
Twitter's Bootstrap 2 ready for testing and feedback
51–60 of 87 posts
Re: Twitter's Bootstrap 2 ready for testing and feedback
#52Earlier quoted context omitted.
So how do you find what to adjust in the CSS? Just read through it until you figure it out? For example, if I wanted to make four columns instead of three?
In Haml: .span3 = render :partial => "col1" .span3 = render :partial => "col2" .span3 = render :partial => "col3" .span3 = render :partial => "col4" Or, to do 3-col: .span4 = render :partial => "col1" .span4 = render :partial => "col2" .span4 = render :partial => "col3" Nothing in the partial needs to especially care about the grid (as long as its simple) --- but if it wanted to, it could nest columns.
#sidebar {
.makeColumn(4);
}
#main_pane {
.makeColumn(8);
}
#sidebar
= render :partial => 'common/sidebar'
#main_pane
= yieldRe: Twitter's Bootstrap 2 ready for testing and feedback
#53Earlier quoted context omitted.
Any recommendations on how to use grids? I've seen them talked about but I don't actually know what to do with it. How does it help you?
You use grids to group and align your content. Basically you need look at your design in order to determine what would make most sense. A very popular choice is to divide it into three equal sizes and then have one of them be the right or left column, while the two others combine to form the other column. So you end up with two columns one for content and one for navigation (typical blog look) Grids can obviously als…
Re: Twitter's Bootstrap 2 ready for testing and feedback
#54Have been using and loving Bootstrap for the past few weeks. Can't recommend it highly enough. I thought Themeforest templates were a great secret weapon, but the thoughtfulness that went into the actual markup in Bootstrap makes working with it fast and painless. That said: no idea what's in Bootstrap 2. Someone got a concise summary?
The big one, for me at least, is the move from a 16-column grid to a 12-column grid. I didn't look into the technical differences, just those that would impact development with it. I just converted a ton of stuff (like last week ), so it's pretty fresh in my mind. I feel like I should have checked the wip branch first, but this has really become my favorite kit. I've been about 95% YUI and the remainder OOCSS, and Bo…
Re: Twitter's Bootstrap 2 ready for testing and feedback
#55Earlier quoted context omitted.
You use grids to group and align your content. Basically you need look at your design in order to determine what would make most sense. A very popular choice is to divide it into three equal sizes and then have one of them be the right or left column, while the two others combine to form the other column. So you end up with two columns one for content and one for navigation (typical blog look) Grids can obviously als…
I have this book and like it, but I doubt it's particularly useful for the typical nerd wiring up a credible looking web application.
Re: Twitter's Bootstrap 2 ready for testing and feedback
#56Earlier quoted context omitted.
I have this book and like it, but I doubt it's particularly useful for the typical nerd wiring up a credible looking web application.
Can you recommend a different book that would be more useful to someone trying to edit Twitter Bootstrap from a beginner's perspective?
The Grid Systems book that was recommended earlier is a better bet if you're a typographer or graphic designer, and particularly if you're thinking about designing novel grid systems. But you're not doing that. The Bootstrap grid is trivial and does not require any background in design to use.
Re: Twitter's Bootstrap 2 ready for testing and feedback
#57Does anyone know why LESS was picked over SASS for Bootstrap?
While Less and Sass are really similar products that do pretty much the same thing; I switched my site from initially using Sass (scss) to now using Less for three reasons: a) Bootstrap uses less and I'm using bootstrap. b) It was trivial to go from sass to less. Mostly just renaming files to have the right suffix. c) I'm sure someone can argue differently, but I really think that the mixin syntax for Less is signifi…
Re: Twitter's Bootstrap 2 ready for testing and feedback
#58Have been using and loving Bootstrap for the past few weeks. Can't recommend it highly enough. I thought Themeforest templates were a great secret weapon, but the thoughtfulness that went into the actual markup in Bootstrap makes working with it fast and painless. That said: no idea what's in Bootstrap 2. Someone got a concise summary?
The big one, for me at least, is the move from a 16-column grid to a 12-column grid. I didn't look into the technical differences, just those that would impact development with it. I just converted a ton of stuff (like last week ), so it's pretty fresh in my mind. I feel like I should have checked the wip branch first, but this has really become my favorite kit. I've been about 95% YUI and the remainder OOCSS, and Bo…
Re: Twitter's Bootstrap 2 ready for testing and feedback
#59Earlier quoted context omitted.
The docs offer more details: http://markdotto.com/bs2/docs/index.html Here's my quick (and probably incomplete) list: - new 12 column grid - responsive layout - tons of new JS plugins - stacked forms are now the default - lots of new 'controls', like split buttons, new tabs, toolbars, highly styled radio buttons and check boxes. - icons(!)
I wonder if this puts it 'ahead' of Zurb Foundation? I have this sneaking suspicion that even if Zurb does a 'good' job, unless it's way better, they're never going to get the publicity these guys do, and thus won't have quite the same feedback loop.