As I understand, you are using a precompiled version. The latest available version for Bootstrap 3 is 3.3.7.
You should link this CSS file dist/css/bootstrap.min.css in your HTML.
<link href="css/bootstrap.min.css" rel="stylesheet">
You should not edit it!
All custom changes must go in your own CSS file. You should link it in your HTML after linking to Bootstrap. This is very important. Otherwise, changes will not be applied.
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
If you don't see your changes, there can be a few reasons.
- Check that CSS files are loaded. You see this in the browser's inspector(DEV tools for your browser)
- Check that your CSS file is included after bootstrap.css
- Check the CSS selector for the HTML element you are trying to customize. Sometimes you have to override exactly the same selector (ex.: ".navbar .navbar-header .navbar-brand {...}")
- Try to clear the browser cache
- The problem might be in some browser extensions. In this case, try to see this page in incognito mode(extensions do not work by default in incognito)
More info about CSS you can find there (MDN docs)
Also, it will be good to read bootstrap docs