I want to customize bootstrap using new colors for navs and such. How would I create a separate css file that overrides some of the things on bootstrap.css? (I don't want to mess with the bootstrap css files, incase there are updates to bootstrap, and I don't have to re-add anything).
How do I change the color of the navbar in my custom CSS file?
Just create a new stylesheet, link to that below the bootstrap stylesheet then you can use the same CSS rules and your new stylesheet will over-ride bootstrap because it is linked to afterwards.
You can add the custom stylesheet after include bootstrap:
Then, you override the styles you want. So will be something like:
for an ugly orange text green button.