hi!
sure, give me a chance to look at this later tonight.
if you come up with anything, let me know.
here are some things to think about when trying to build this feature:
1.)
the newsticker div has a fixed height. i'm defining the newsticker div as the block that includes all sliding divs within it.
the vertical sliding divs contain a fixed height, so there are no partial divs showing in the main view area after the scroller has completed a single iteration. if the vertical sliding divs are variable, there may be partial divs that render on screen. so in your example, imagine box "2" is adjusted properly based on content height. what happens to box "3"? will the top of it's content be show to the user?
2.) if you make the vertical sliding divs adjustable, will the outer newsticker div need to be adjusted as well? will it's height need to be recalculated to prevent subsequent sliding divs from showing partial content on screen? if we do make this adjustable, how will the newsticker div affect the layout of other divs on the same page?
just some things to consider.