Przemek Wojtas
Przemek Wojtas

Reputation: 1381

Generated bootstrap navbar not applying

I have generated an navbar colors for my website through:

http://work.smarchal.com/twbscolor/css/e74c3cc0392becf0f1ffbbbc0

I have copied LESS code and input that into my less file and compiles it into style.css. As you can see below my style.css is below bootstrap however colors do not apply to my navbar. Anyone had similar problem and know how to fix it?

    <link href="css/bootstrap.css" rel="stylesheet" type="text/css" />
    <link href="../build/css/style.css" rel="stylesheet" type="text/css" />

Upvotes: 1

Views: 52

Answers (1)

max
max

Reputation: 8687

This is because on your website you use navbar-inverse class instead of navbar-default.

Upvotes: 1

Related Questions