誰かが以下のコードで何がうまくいかなかったのか教えてもらえますか?
各行に3つずつ、合計18の製品を表示しようとしています。私はこのCSSを初めて使用しますが、何がうまくいかなかったのかわかりません。以下のコードから確認してください。
出力は次のとおりです。
http://your-guru.com/store/c/clothes/
製品を表示するコードは次のとおりです。
<!-- Product List -->
<div class="pl">
[product.each]
<div class="t1 col3">
<ul style="display: block;" class="display thumb_view category_list">
<li>
<div class="content_block">
<a href="[product.url]" title="[product.name]" class="product_thumb" style="width:190px; height:180px">
<img src="http://templatic.com/demos/ecommerce/wp-content/themes/eCommerce_child/images/sale.png" alt="" class="sale_img">[product.image direct='1' tag='1' width='190' height='180']
</a>
<div class="content">
<h3>
<a href="[product.url]" title="View details of [product.name]">[product.name]</a>
</h3>
<p class="sale_price">
<?php if ($product->saleprice > 0 && $product->saleprice < $product->price) { ?>
<div class="prc">
<small>
<span style="text-decoration: line-through; color:blue;">[product.currency mode='sign'][product.price]</span>
  
<span style="font-weight: bold; color:red;">[product.currency mode='sign'][product.saleprice]</span>
</small>
</div>
<?php } else { ?>
<div class="prc">
<small>
<span style="font-weight: bold; color:blue;">[product.currency mode='sign'][product.price]</span>
</small>
</div>
<?php } ?>
</p>
</div>
</div> <!-- content block #end -->
</li>
</ul>
</div> <!-- t1 col3 #end -->
[/product.each]
<div class="clearingdiv"></div>
</div> <!-- /Product List -->
何が悪かったのか教えてください。