0

我想将我自己的样式和 html 添加到 zencart 中的产品中。我查看了模块文件夹前端中的 product_listing.php、new_products.php 和 features_products.php。但我不知道该怎么做。任何提示或示例?提前致谢。

4

1 回答 1

0

尝试在所有产品中给出 div

CSS

.product
{
  //your properties
  font-size: 11pt;
  font-family: verdana;
  font-weight: bold;
}

循环

//Start loop
<div class="product">
    //Product
</div>
//End loop
于 2012-11-20T06:05:01.457 回答