5 ms·
You can get around these issues with customization. There may be some other frameworks for setting up a quick design out there that are better suited to you if
by adrianbravo 14y ago
You can get around these issues with customization. There may be some other frameworks for setting up a quick design out there that are better suited to you if that's an issue, but I can't really help you there.
If icon size is an issue, you can try using Font Awesome: http://fortawesome.github.com/Font-Awesome/ http://fortawesome.github.com/Font-Awesome/. It uses a font-face for the icons rather than sprites, so you can configure further in css by adjusting size and color, whereas bootstrap's icons are limited to black/white (plus some opacity). A potential gotcha with this approach is you need to be sure you can configure your web server to send the right content-type for the font files you'll send. I had to do some minor nginx configuration to get it right for certain browsers.
There are also pre-customized resources like bootswatch (http://bootswatch.com/ http://bootswatch.com/) if you want to get a look at some of the possibilities.
And if you clone the bootstrap repo, you can fiddle around with the base LESS stylesheets to make quick changes that affect the full system (lots of stuff in variables.less: https://github.com/twitter/bootstrap/blob/master/less/variables.less https://github.com/twitter/bootstrap/blob/master/less/variab...) of course.
I don't think the issues you listed are particularly significant unless you know that customization is going to be too costly in terms of time.
- davidw 14y agoI've never customized it so I have no idea whether it's a scary mess that sort of works but not really because you're taking it outside its comfort zone, or whether it's all pretty easy. I guess I'll have to play around with it some when the time comes. Thanks!
- eknuth 14y agoCustomizing it with less is really pretty straightforward. You can also generate custom css from the website. Just click the customize tab in the topbar. You can bump up @baseFontSize. 16px works very well. You might also want to increase the @baseLineHeight a bit as well.