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 Build a Website with Bootstrap Customizing Bootstrap

Kartik Kapoor
Kartik Kapoor
3,016 Points

Changing a downloaded customized bootstrap file.

Can I modify a customized bootstrap file after I have downloaded it?

1 Answer

Yes! just create an additional stylesheet and link it underneath the bootstrap file. This way the browser will render bootstrap then will overwrite any styles that you make in your own stylesheet. Its best-practice to not make changes in the bootstrap file

Kartik Kapoor
Kartik Kapoor
3,016 Points

I understand that but that would mean adding an additional CSS file which would create and additional HTTP request. Wouldn't that slow down a the page as compared to just modifying the CSS of the bootstrap file?

Wayne Priestley
Wayne Priestley
19,579 Points

Hi Kartik,

You really won't see any difference in your page load times with one additional http request. Having the changes in a separate css file will make things much easier when dealing with your code in the future.

Hope this helps.