Changing Bootstrap NavBar color

前端 未结 3 911
天命终不由人
天命终不由人 2021-01-16 20:47

I was attempting to change the navbar color in Bootstrap, but it was unsuccessful. The navbar just stays the same as if I never added the CSS or custom styling.

I ad

3条回答
  •  情话喂你
    2021-01-16 21:47

    Bootstrap NavBar Generator is what you need. It is a little bit tricky when you use the CSS generated.

    In case you find that after you insert the generated stylesheet the NavBar does not change at all.

    Please including the following was what made it possible to change the navbar color:

    .navbar{ 
        background-image: none;
    }
    

    Hope this is helpful. :D

提交回复
热议问题