Presently I have a scrolling banner, using css and jquery. I'm having a problem with the 3rd - top layer display in the correct position.
1st layer - bottom layer is a scolling image - using a jquery plugin.
2nd layer - middle layer is a menu bar at the bottom of the images.
3rd layer - top layer is text that changes with each image and a previous/next option that should show on top of the menu bar.
Looks like the absolute positioning is in place ok, try adding a z-index value to your divs to order them top to bottom. The higher the z-index, the more 'priority' it has, or the closer to the top of the layer pile. In the below example, #layer1 has a z-index of 10 (making it the lowest on the stack), #layer2 has a z-index of 20 (placing it higher on the stack), and #layer3 has a z-index of 30 (placing it on top).
Take a look here: http://www.divitodesign.com/2008/05/z-index-overlap-html-elements-with-css/ or search google: http://www.google.ca/search?q=css+z-index
Open in new window