How can I change the background color of the navbar of the Twitter Bootstrap 2.0.2? How can I change color of all the elements of the navbar to reflect the background color?
|
|
You can overwrite the bootstrap colors, including the
You just have to modify all of those styles with your own and they will get picked up, like something like this for example, where i eliminate all gradient effects and just set a solid black background-color:
You can take advantage of such tools as the Colorzilla Gradient Editor and create your own gradient colors for all browsers and replace the original colors with your own. And as i mentioned on the comments, i would not recommend you modifying the bootstrap.css stylesheet directly as all of your changes will be lost once the stylesheet gets updated (current version is v2.0.2) so it is preferred that you include all of your changes inside your own stylesheet, in tandem with the bootstrap.css stylesheet. But remember to overwrite all of the appropriate properties to have consistency across browsers. |
|||||||||||
|
|
An excellent resource to see how to theme bootstrap is: bootswatch.com. It has nice examples and shows code as well. In short, they use lessc to recompile the bootstrap.css to your new color-theme.css. The nice thing of their approach is that is build on top of bootstrap, so when bootstrap is updated, you just recompile. Links about using lessc and bootstrap: |
|||||
|
|
|
If you havent got time to learn "less" or do it properly, here's a dirty hack... Add this above where you render the bootstrap nav bar HTML - update the colours as required..
|
||||
|
|
|
You can download a custom version of bootstrap and set @navbarBackground to the color you want. |
|||
|
|
|
If you are using LESS, you can use Mixins for less code. Here I will add a gradient, border, and border-radius:
*If you are using the rails gem, twitter-bootstrap-rails, I do this directly in the file bootstrap_and_overrides.css.less* |
|||
|
|
|
The best way currently to do the same would be to install LESS command line compiler using
Once you have done this, then go to the less folder in the directory and then edit the file variables.less and you can change a lot of variables according to what you need including the color of the navigation bar
Once you have done this, go to your bootstrap directory and run the command make. |
|||
|
|