user4621049
user4621049

Reputation:

Bootstrap fixed top navbar overlaps the vertical scrollbar

I have made a fixed-top navbar with Bootstrap. But the part over the vertical scrollbar that should be visible above the navbar disappears under the navbar.

Live preview of the issue: http://thenlghost.github.io/Good-Guy-Games/

What is should be: http://prntscr.com/6df693

Upvotes: 3

Views: 6067

Answers (1)

IndieRok
IndieRok

Reputation: 1788

Delete the overflow line from your body,html css style:

overflow-x: hidden;

Upvotes: 9

Related Questions