If you choose the CS-Portfolio demo at http://css-tricks.github.com/AnythingSlider/#&panel1-1&panel2-1, you can see this issue.
This is the structure:
div.anythingSlider, height 390px
div.anythingWindow, height 390px
div.anythingControls, height 49px
This means that anything that follows div.anythingSlider is going to overlap div.anythingControls, as the top of "Queenie's Killer Tomato Bagel Sandwich" slider does in this example, because succeeding elements don't care about the total height of div.anythingSlider's children, only about the declared height of div.anythingSlider.
I am not sure what a safe general-purpose solution would be.
If you choose the
CS-Portfoliodemo at http://css-tricks.github.com/AnythingSlider/#&panel1-1&panel2-1, you can see this issue.This is the structure:
This means that anything that follows
div.anythingSlideris going to overlapdiv.anythingControls, as the top of "Queenie's Killer Tomato Bagel Sandwich" slider does in this example, because succeeding elements don't care about the total height ofdiv.anythingSlider's children, only about the declared height ofdiv.anythingSlider.I am not sure what a safe general-purpose solution would be.