Hi,
in
catalog\includes\templates\template_default\templates\tpl_shopping_cart_default. php
from line 63-123 the array of products in the cart is output.
At line 85:
the id="cartImage" and id="cartProdTitle" are declared and so get repeated for every product in the array. An id should be used only once on a page.PHP Code:<a href="<?php echo $product['linkProductsName']; ?>"><span id="cartImage" class="back"><?php echo $product['productsImage']; ?></span><span id="cartProdTitle"><?php echo $product['productsName'] . $product['flagStockCheck']; ?></span></a>
regards
Steve




