djangopackages-zz / djangopackages

Django Packages - a place to review Django apps, frameworks, and projects.
http://djangopackages.com
MIT License
53 stars 40 forks source link

Horizontal scroll bar is broken, e.g. see the CMS grid #47

Closed audreyfeldroy closed 13 years ago

audreyfeldroy commented 13 years ago

bmihelac Bojan Mihelac reports: @audreyr nice work, but horizontal scroll bar is broken in chrome (see grids)

Probably has to do with the sticky footer http://www.cssstickyfooter.com/

bmihelac commented 13 years ago

It actually does not work in firefox and safari too.

If you remove overflow:auto from #main declaration it would work as it should, at least in these three browsers (couldnt check IE).

#main {
    /*overflow: auto;*/
    padding-bottom: 50px;
}

Bojan

pydanny commented 13 years ago

Fixed!