Rifat
Rifat

Reputation: 21

Browser bottom scrollbar doesn't show

I made a web page. When I zoom it, there is no scroll bar on the bottom of browser. I tried many times but I can't.

Please any body help me.

Here is my dropbox link

Upvotes: 0

Views: 63

Answers (1)

Rohit Azad Malik
Rohit Azad Malik

Reputation: 32182

Hi now remove to your .fix in css overflow:hidden; and add this css in your stylesheet

as like this

Remove this css

.fix {
overflow: hidden;
}

Add this css

.fix{
  *zoom: 1;
}
.fix:after, .fix:before {
content: "";
display: table;
line-height: 0;
}

.fix:after {
clear: both;
}

Your Css Path is

css/main.css  ---> Line No is 111

Upvotes: 1

Related Questions