TM has used an insane amount of code just to output one centerbox product item on the homepage:
HTML Code:
<div class="centerBoxContentsNew centeredContent back" style="width:33%;">
<div style="margin-right:13px;">
<table style="width:100%;">
<tr>
<td>
<div class="box_head">
<div class="topback">
<div class="inner31">
<div class="inner32">
<div class="inner33"><img src="images/spacer.gif" alt="" width="1" height="1" /><br/>
</div>
</div>
</div>
</div>
<div class="midback">
<div class="inner31">
<div class="inner32">
<div class="inner33 product_box_name"><a href="http://www.esmokersupply.com/index.php?main_page=product_info&cPath=0&products_id=12">10 ml 555 (Medium)</a><br />
</div>
</div>
</div>
</div>
</div>
</td>
</tr>
</table>
<div class="product_box">
<div class="bg_inner1">
<div class="bg_inner2">
<div class="bg_inner3">
<table style="width:100%; margin-bottom:9px; margin-left:12px;">
<tr>
<td>
<div class="img_box1"> <a href="http://www.esmokersupply.com/index.php?main_page=product_info&cPath=0&products_id=12"><img src="images/555Medium.png" alt="10 ml 555 (Medium)" title=" 10 ml 555 (Medium) " width="63" height="63" /></a><br />
</div>
</td>
</tr>
</table>
<table class="price_box" style="margin-left:0;">
<tr>
<td class="product_box_price">
<div class="indent"> <strong>$9.95</strong><br />
</div>
</td>
</tr>
<tr>
<td>
<div style="margin-top:11px;"><a href="http://www.esmokersupply.com/index.php?main_page=product_info&cPath=0&products_id=12"><img src="includes/templates/theme204/buttons/english/button_goto_prod_details.gif" alt="Go To This Product's Detailed Information" title=" Go To This Product's Detailed Information " width="104" height="25" /></a> </div>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
They think they need all of this just to output the product heading:
HTML Code:
<table style="width:100%;">
<tr>
<td>
<div class="box_head">
<div class="topback">
<div class="inner31">
<div class="inner32">
<div class="inner33"><img src="images/spacer.gif" alt="" width="1" height="1" /><br/>
</div>
</div>
</div>
</div>
<div class="midback">
<div class="inner31">
<div class="inner32">
<div class="inner33 product_box_name"><a href="http://www.esmokersupply.com/index.php?main_page=product_info&cPath=0&products_id=12">10 ml 555 (Medium)</a><br />
</div>
</div>
</div>
</div>
</div>
</td>
</tr>
</table>
Competently written code tailored for this heading application would have maybe two divs and an <h4> or something (and an <a>), which would allow for variable box width. So don't try to use their code as an example to make heading images for your product listings.