I am using css to display some navigation buttons -
Example:
<style type="text/css">
#btngallery { position: absolute; top: 88px; left: 188px; visibility: visible }
#btnemail { position: absolute; top: 120px; left: 323px; visibility: visible }
#iframecontent { position: absolute; top: 137px; left: 460px; visibility: visible }
</style>
Then in the body I have:
<div id="btnemail">
<img src="images/btn_email.jpg" width="136" height="79" name="btnemail" border="0">
</div>
<div id="btngallery">
<img src="images/btn_gallery.jpg" width="142" height="85" name="btngallery" border="0">
</div>
<div id="iframecontent">
<iframe align="center" height="400" width="350" frameborder="10" scrolling="Auto" src="gallery/index.htm">
</iframe>
</div>
Notice that the first two divs are images, and the third div is an iframe.
My problem is, I want the iframe to be displayed 'below' (bottom layer) the images - In other words, I want the images to appear 'on top' of the iframe.
Is this possible? If so, how?
tia
Example:
<style type="text/css">
#btngallery { position: absolute; top: 88px; left: 188px; visibility: visible }
#btnemail { position: absolute; top: 120px; left: 323px; visibility: visible }
#iframecontent { position: absolute; top: 137px; left: 460px; visibility: visible }
</style>
Then in the body I have:
<div id="btnemail">
<img src="images/btn_email.jpg" width="136" height="79" name="btnemail" border="0">
</div>
<div id="btngallery">
<img src="images/btn_gallery.jpg" width="142" height="85" name="btngallery" border="0">
</div>
<div id="iframecontent">
<iframe align="center" height="400" width="350" frameborder="10" scrolling="Auto" src="gallery/index.htm">
</iframe>
</div>
Notice that the first two divs are images, and the third div is an iframe.
My problem is, I want the iframe to be displayed 'below' (bottom layer) the images - In other words, I want the images to appear 'on top' of the iframe.
Is this possible? If so, how?
tia