sorry about that.
Due to product NDA I can't post the links to the website.... but here is some of the code.
I am using simple tables. If you need more let me know.
CSS for the popup
Code:
.thumbnail{
position: relative;
z-index: 0;
}
.thumbnail:hover,
.thumbnail:active,
.thumbnail:focus{
background-color: transparent;
z-index: 50;
}
.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #CCC;
padding: 5;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}
.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}
.thumbnail:hover span,
.thumbnail:active,
.thumbnail:focus{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -40;
left: 60px; /*position where enlarged image should offset horizontally */
}
Sample Table HTML
Code:
<tr>
<td width="139"><a class="thumbnail" href="#thumb"><img src="" alt="" name="Image" width="175" height="200" id="Image" style="background-color: #999999" /><span><img src="" width="175" height="200" /><br />The Haier HSB03 Refrigerator / Freezer keeps your food fresh and your beverages ice cold in this feature-packed compact refrigerator.</span></a></td>
<td width="144"><a class="thumbnail" href="#thumb"><img src="" alt="" name="Image" width="175" height="200" id="Image" style="background-color: #999999" /><span><img src="" width="175" height="200" /><br />The Haier HSB03 Refrigerator / Freezer keeps your food fresh and your beverages ice cold in this feature-packed compact refrigerator.</span></a></td>
<td width="134"><a class="thumbnail" href="#thumb"><img src="" alt="" name="Image" width="175" height="200" id="Image" style="background-color: #999999" /><span><img src="" width="175" height="200" /><br />The Haier HSB03 Refrigerator / Freezer keeps your food fresh and your beverages ice cold in this feature-packed compact refrigerator.</span></a></td>
<td width="139"><a class="thumbnail" href="#thumb"><img src="" alt="" name="Image" width="175" height="200" id="Image" style="background-color: #999999" /><span><img src="" width="175" height="200" /><br />The Haier HSB03 Refrigerator / Freezer keeps your food fresh and your beverages ice cold in this feature-packed compact refrigerator.</span></a></td>
<td width="139"><a class="thumbnail" href="#thumb"><img src="" alt="" name="Image" width="175" height="200" id="Image" style="background-color: #999999" /><span><img src="" width="175" height="200" /><br />The Haier HSB03 Refrigerator / Freezer keeps your food fresh and your beverages ice cold in this feature-packed compact refrigerator.</span></a></td>
</tr>
<tr>
<td>Mini Refrigerator roll over<br />
$199.00 </td>
<td>Mini Refrigerator roll over<br />
$199.00 </td>
<td>Mini Refrigerator roll over<br />
$199.00 </td>
<td>Mini Refrigerator roll over<br />
$199.00 </td>
<td>Mini Refrigerator roll over<br />
$199.00 </td>
</tr>
Bookmarks