【发布时间】:2012-11-08 04:16:18
【问题描述】:
我想将自己的样式和 html 添加到 zencart 中的产品中。 我查看了模块文件夹前端中的 product_listing.php、new_products.php 和 features_products.php。 但我不知道该怎么做。任何提示或示例? 提前致谢。
【问题讨论】:
-
为所有产品 div 赋予类名
我想将自己的样式和 html 添加到 zencart 中的产品中。 我查看了模块文件夹前端中的 product_listing.php、new_products.php 和 features_products.php。 但我不知道该怎么做。任何提示或示例? 提前致谢。
【问题讨论】:
尝试在所有产品中给出div
喜欢css
.product
{
//your properties
font-size: 11pt;
font-family: verdana;
font-weight: bold;
}
在循环中
//Start loop
<div class="product">
//Product
</div>
//End loop
【讨论】: