Change border color navbar bootstrap 3

15.2k Views Asked by At

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

2

There are 2 best solutions below

0
On BEST ANSWER

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;}
0
On

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;}