Browsers scrollbar is under my fixed div

LifeIsShort picture LifeIsShort · Oct 23, 2012 · Viewed 89.7k times · Source

i have a fixed header with 100% width.

#header {
background: #2e2e2e;
width: 100%;
z-index: 999;
position: fixed;
}

browsers scrollbar is under my fixed div. How to fix that?

scrollbar

Answer

NullPoiиteя picture NullPoiиteя · Oct 23, 2012

its because the overflow-x: hidden; in base.css line number 9

body {
    color: #444444;
    font: 13px/20px Arial,Helvetica,sans-serif;
    overflow-x: hidden; // remove this 
}