PrivateUser
PrivateUser

Reputation: 4524

windows scroll using javascript in fluid layout. How?

Hey guys check this page. This page has fluid layout now. I applied width:100%; min-width:800px and max-wdth:1280px. Now if the user resize/shrink the page i want both vertical and horizontal scroll bar. I applied overflow:scroll; but its not working. Is there any javascript available there to enable this feature? Thanks

Upvotes: 0

Views: 202

Answers (2)

Andres I Perez
Andres I Perez

Reputation: 75379

You applied overflow:scroll where?....there is an inline style of overflow: hidden; added t the body tag in the html, remove that and you will get your scrollbars back.

Upvotes: 2

feeela
feeela

Reputation: 29932

How do you expect scrollbars, if you have an overflow: hidden; on the body-tag? If I delete this, both scrollbars appear.

Upvotes: 2

Related Questions