Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS Framework Basics Prototyping with Bootstrap Building Modal Windows and Forms

Question about customizing Bootstrap

In the prototyping with Bootstrap exercise, Guil went to the customize section of getbootstrap.com and specified colors and styling for text, navbars, jumbotrons etc.

Is it much better to do it this way? Rather than, for example, downloading the default Bootstrap zip file and overwriting default Bootstrap styles in an author-created stylesheet?

Very nice course by the way. This needs to be in the Web Design and Front End Web Development track (if it hasn't been added already)

Thx ~Jay

2 Answers

Kevin Korte
Kevin Korte
28,148 Points

Depending on how much overwriting you'll be doing, customizing bootstrap before compile can lead you with less CSS bloat. All of those default bootstrap CSS classes you override are still going to load increase file size, even though they are overwritten, and too much of them will start to create performance problems for the website.

If there are a lot of changes to the default bootstrap, in development mode it might not hurt to develop the site overriding default bootstrap classes since you're not as concerned with performance while you're developing, and once that's done than extract your custom styles, and create and download a custom version of bootstrap that would be leaner and thus faster.

I guessed as much. I guess I'll do as much planning as I can before I start working with Bootstrap on my next project.

Thanks.

If a given project will have a determinate theme (for example if a designer has already created comps and they've been approved), or if you're fairly certain that you'll never use the default styles, I see no harm in making these decisions prior to building the pages. If your project is very small, the decision will likely not make a huge difference either way since any overwriting or reverting will be very easy.

That's what I needed to know. I tip my fedora to you sir.