Ok, so that did work, technically but now I am faced with a new problem.
The DIVs (there are 6) in the cell no longer stretch out the cell to mess up the layout. But they still retain their one after the other placement so they effectively vanish because they are showing up out side of the confines of the cell.
I placed all the DIVs in the cell but they are showing up relative to their placement, not to the top & left of the cell each time I select one and hide the rest like I thought they would.
I know I'm missing something but I'm not sure what.
EDIT: I'm looking for an iframe effect without the mess of iframes.
Here is the CSS:
Code:
.layerstyle {
background-color: transparent;
layer-background-color: transparent;
border: 0px none #000000;
visibility: hidden;
position:relative;
overflow: hidden;
z-index:99;
}
And the cell in question:
Code:
<td colspan="7" rowspan="4" background="images/tech_window.jpg">
<div style="height:272px; ">
<div ID="Layer1" class="layerstyle" style="width:158px;">
<div align="center">
<a href="http://www.kodak.com/eknec/PageQuerier.jhtml?pq-path=8016&pq-locale=en_US&_requestid=12831" target="_blank">
<img src="images/z650-small.png" border="0"></a></div>
<br>Kodak z650<br>10x Optical Zoom<br>6.1 megapixel<br>Many user settings<br>and multiple presets
</div>
<div ID="Layer2" class="layerstyle" style="width:158px; ">
<div align="center">
<a href="http://www.adobe.com" target="_blank">
<img src="images/PS-CS3.png" border="0"></a></div>
<br>Photoshop CS3<br>Adobe Systems Inc.<br>Do I really need <br>to say more?
</div>
<div ID="Layer3" class="layerstyle" style="width:158px; ">
<div align="center">
<a href="http://www.kodak.com/" target="_blank">
<img src="images/kodak-printing.jpg" border="0"></a></div>
<br>Kodak Printing<br>Kodak Inc.<br>Does amazing<br>prints up to<br>20x30 posters.
</div>
<div ID="Layer4" class="layerstyle" style="width:158px; ">
<div align="center">
<a href="http://hdrcreme.com/" target="_blank"><img src="images/HDR.jpg" border="0"></a></div>
<br>HDR Processing<br>A bit too much to go<br>into. Click the image<br>to learn more.
</div>
<div ID="Layer5" class="layerstyle" style="width:158px; ">
<div align="center"><a href="http://store.apple.com" target="_blank"><img src="images/macbook.png" border="0"></a></div><br>Apple Macbook<br>• 2.4GHz Intel<br>Core 2 Duo<br>• 2GB memory<br>• 160GB hard drive<br>• Double-layer<br>SuperDrive
</div>
<div ID="Layer6" class="layerstyle" style="width:158px; ">
<div align="center">
<a href="http://www.afinefrenzy.com" target="_blank"><img src="images/fine-frenzy.png" border="0"></a></div>
<br>A Fine Frenzy<br>Singer, pianist with a<br>lovely melancholy style<br>that passes the time<br>without grating nerves.
</div></div> </td>
Bookmarks