user2654833
user2654833

Reputation: 701

How do I change the color of the navbar in Bootstrap 3?

Bootstrap 3 does not have the customize option yet.

The color of the navbar for the carousel template is blackish. I would like to change that to #4169E1. I already have a custom.css file that is linked beneath the bootstrap.css reference. What would I put into my custom.css to change the color of the navbar?

<!-- Bootstrap core CSS -->
    <link href="../bootstrap/css/bootstrap.css" rel="stylesheet">
    <link href="../bootstrap/css/custom.css" rel="stylesheet">

Upvotes: 0

Views: 2354

Answers (1)

Carlos Remuzzi
Carlos Remuzzi

Reputation: 51

custom.css:

.navbar-inverse {
   background-color: #4169E1;
}

Upvotes: 5

Related Questions