Yes. The code is located in style.css under #photoShow and the Jquery code is at the bottom of the page, but there is nothing that actually calls and uses the function yet.
Main Topics
Browse All TopicsHi,
I would like to display mulltiple photos over each other for a jquery gallery script I'm writing using the z-index property.
However, whenever I try to use position absolute in the inner divs to have them stack up on top of each other they just display one below another.
Any help would be greatly apprceiated. Thanks
Link:
http://newliquidcomma.com.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
your divs that hold the photos do not have classes assigned. You need to assign each picture it's own div and give differetn zindex values for each of those divs. So change the following:
<div>
<img src="http://newliquidcomma
</div>
<div>
<img src="http://newliquidcomma
</div>
TO:
<div class="zindex1">
<img src="http://newliquidcomma
</div>
<div class="zindex2">
<img src="http://newliquidcomma
</div>
With how you have it set up it is linging them up because each picture does not hav ea different zindex value.
No, z-index isn't going to work very well for you, you need to be able to position them absolutely.
I suggest using display:none/display:block
In your "style.css" file, change your css to this:
#photoShow {
/*
important, in order to place divs inside photoShow div
with absolute positioning, this div needs relative position:
*/
position:relative;
width:718px;
height:350px;
}
#photoShow div {
position:absolute;
left:0px;
top:0px;
z-index: 0;
}
.previous {
display:none;
}
.current {
display:block;
}
Then go with this Javascript for your rotate functions:
Business Accounts
Answer for Membership
by: CCSOFlagPosted on 2009-09-08 at 09:58:17ID: 25283828
Do you have each picture in a separate div with different z index values? Would be easier if you were able to post the code in question.