Reputation: 20444
Using CSS we have a panel with overflow:auto. For some unknown reason the panel that contains the scrolling elements is nearly twice as big as it should be. The panel uses ajax to load in more content and no matter how big the scrollable div needs to be it doubles in size.
WHY http://jsfiddle.net/MnWNt/3/
Upvotes: 0
Views: 49
Reputation: 53991
This is being caused by #coursepack .dircore a .tit
having a height
of 100%
.
Removing this height solves your problem.
Here's a Working Example.
Upvotes: 2