Question

When I try to place an element on top of my jQuery Cycle element, it doesn't work. The element is always behind the jQuery cycle element. I use float: right; to position the element, and set its z-index to 100000, to no avail.

Firebug sees the Cycle element and its children as having low z-indexes, and shows the floating element to be in the right place.

The element never shows above the Cycling images.

<!-- the cycling set -->
<div id='headerimages'>
    <img src='images/header1.jpg' alt='' style='' />
    <img src='images/header2.jpg' alt='' style='' />
    <img src='images/header3.jpg' alt='' style='' />
</div>
<!-- the floating element -->
<img src='images/logotransparent.png' alt='' id='logo' /> 
Was it helpful?

Solution

floating doesn't trigger z-index, only
Position: Relative and position: Absolute

so try these.. you might want to try adding position:relative,
it won't effect anything most of the time, but will give you access to z-index

OTHER TIPS

I know it is an old thread....but thought to put it here.....I used the presentationcycle in my site and faced similar problem, tried out the solution suggested here.....I changed the Z-index at many places in my own css files....but finally found that the problem was in the css of the cycle itself.....changing the z-index in it helped to solve my problem.

I had this same problem, but the final fix for me was setting the z-index on the things I wanted to float above my animation to a really high number (100 in my case). It appears that Cycle assigns it's own z-indexes (they were in the single digits, but still greater than 1 or 2, which is where I initially set my floating objects' z-indexes).

Just add z-index style to cycle container

.cycle-slideshow {
 z-index: 0; // or any smaller value to the covered div's
}

details see Displaying a div at a z-index above a jQuery Cycle slide show

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top