Reputation: 469
working on a site at the minute and have a part really annoying me, there seems to be a fixed position element with a border top/bottom set on it that results in a horizontal grey line on the page. I've tried finding it with inspect element etc but am having trouble identifying it, can anyone help out?
Example here.
EDIT: Url
Upvotes: 0
Views: 525
Reputation: 611
There is a <hr>
tag right after the closing of this tag
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
the comment above the div is "Collect the nav links, forms, and other content for toggling". Delete that, grey line goes away. That is if that's the grey line you're talking about :)
Upvotes: 0
Reputation: 2031
Its an <hr>
element just after div#bs-example-navbar-collapse-1
Upvotes: 1