Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将我自己的样式和 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