I currently have a couple of slideshows going that require me to have the container to be position: relative;
and its child elements (img's) must be
position: absolute;
Like So:
HTML
<div class="frontimg">
<div><img src="img/jackson.jpg"></div>
<div><img src="img/custom.jpg"></div>
</div>
CSS
.frontimg {
width: 100%;
text-align: center;
position: relative;
}
.frontimg img {
position: absolute;
width: 50%;
}
And then a small js script to make them fade in and out.
I am having trouble positioning another div below it. The div below it just seems to be hidden under it.