Reputation: 83
I want to remove this line see below image. I think it's border color but i did try to change color of border but still issue exist.
See this Link for customization of bootstrap navbar
Upvotes: 1
Views: 15202
Reputation: 1045
There are two types of bootstrap menus - default or inverse (light or dark):
<nav class="navbar navbar-default" role="navigation"></nav>
<nav class="navbar navbar-inverse" role="navigation"></nav>
According to your use, do something like this:
.navbar-default {border:none !Important;} or
.navbar-inverse {border:none !important;}
Upvotes: 1
Reputation: 192
Yeah, you really should include some code.
A typical bootstrap navbar gets the border from .navbar-default
So try the css below:
.navbar-default {
border-color: transparent;}
Upvotes: 3