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.
Change border color navbar bootstrap 3
15.2k Views Asked by ScorpionPk At
2
There are 2 best solutions below
0

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;}
Yeah, you really should include some code.
A typical bootstrap navbar gets the border from .navbar-default
So try the css below: