- Code: Select all
<table class="Product">
<tbody>
<tr>
<td valign="top" class="ProductGraphicLeft"><img width="221" vspace="2" hspace="2" height="118" border="0" alt="BangGoldnShadw.JPG" src="http://www.artandsoulbeads.com/store/media/Kits/BangGoldnShadw.JPG"></td>
<!-- This closes the product graphic cell -->
<td valign="top" class="ProductText"><!-- This opens the text cell -->
<table cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr><!-- Start of ROW -->
<td><input type="checkbox" value="772" name="itemnum">
Crystal Bangle Bracelet Kit: Crystal Golden Shadow - Gold Finish <b>$55.00</b></td>
</tr>
<!-- END OF ROW -->
<tr> <!-- Start OF Next ROW -->
<td><input type="checkbox" value="774" name="itemnum">
Crystal Bangle Bracelet Kit: Crystal Golden Shadow - Silver Finish <b>$48.00</b></td>
</tr>
<!-- Last One -->
</tbody>
</table></td>
<!-- Close cell for product name and description -->
</tr>
</tbody>
</table>
I can replace the TABLE with a UL but what I end up with is the IMAGE inside the ProductGraphicLeft TD and the information which would be inside of the ProductText TD outside and displaying in LI's without being inside a UL. You can see an example on this page, http://www.artandsoulbeads.com/store/crystal_bangle_crystal_bracelet_kits.html - find Crystal Bangle Bracelet Kit: Custom Color and view it's source.
Ideally I would like to define the subproduct area without the use of a TABLE. But thus far I have been unable to locate an example of defined subproduct code I could use as an example.
My current code looks like this
- Code: Select all
[-- IF PRODUCT.Subproduct --]
<ul>
[--LOOP SUBPRODUCTS 1 --]
<li>[--SUBPRODUCTS--]</li>
[--END_LOOP SUBPRODUCTS--]
</ul>
[-- ELSE --]
In the [-- DEFINE SUBPROUCT --] at the top of the page there is no TABLE named Product, no IMAGE being defined in a TD and no Product information being defined in a TD.