Began to study Bootstrap, like so far everything is clear, but one question appeared.
If you do only on Bootstrap, it turns out not very nice, but the question is how to change the standard styles?
That is, like this:

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <div class="navbar"> <nav class="navbar-inner"> <ul class="nav"> <li><a>小褋褘谢泻邪</a></li> <li><a>小褋褘谢泻邪</a></li> <li><a>小褋褘谢泻邪</a></li> <li><a>小褋褘谢泻邪</a></li> <li><a>小褋褘谢泻邪</a></li> </ul> </nav> </div> 

It turns out the standard menu. How can I change colors and stuff?

  • Another would be to figure out the parameters there) - alexfedosienko
  • four
    and add after the bootstrap.css your styles file with overridden selectors? - Specter
  • There it will be necessary to rewrite a lot - alexfedosienko
  • one
    @alexfedosienko, uh, should someone rewrite for you? Or how? - Crasher

1 answer 1

What is the actual problem? You create a style.css style.css in it you include the bootstrap.css file itself and everything, then you just describe the classes that you need to change (everyone does so) and the standard templates are like a support from which you'll start.

  • Thanks, I thought you could do something else - alexfedosienko