Hmm I'm not sure you'll find the solution to this by changing the script. It has to come with certain modifications to your layout. There is no particular rules saying you can't put DD Drop Down Panel inside an absolutely positioned DIV, ie:
Code:
<div style="position:absolute; background: yellow">
//DD Panel entire HTML here
</div>
However, once you do that, expanding the panel no longer affects the height of the parent container (since it's absolutely positioned), and hence won't push down any content that follows this parent DIV. I'm sure there's a workaround, but as mentioned, I think it lies in tweaking your layout somehow.
Bookmarks