So I have this navbar:
<nav class="navbar navbar-default" style="background: black; margin-bottom: 0;">
And it's working fine. However when I'm trying to change styles in external CSS file instead of inline:
.navbar-default {
background: black;
margin-bottom: 0;
}
They are not working at all. CSS file is working fine since I checked and bg pictures are changing. I have problem only with navbar and can't figure it out. According to this: Change navbar color in Twitter Bootstrap 3 I'm doing everything fine. It's first time I'm having this issue. Working with bootstrap if anyone is wondering :)
Any help guys? I dont want to use inline css.