I'm in the process of designing a Shopping Cart using Opencart. Here is the key part of code found in the Category.tpl file where products are being updated
<div class="row">
<?php foreach ($products as $product) { ?>
<div class="product-layout product-list col-xs-12">
<div class="product-thumb">
<div class="image"><a href="<?php echo $product['href']; ?>"><img src="<?php echo $product['thumb']; ?>" alt="<?php echo $product['name']; ?>" title="<?php echo $product['name']; ?>" class="img-responsive" /></a> </div>
<div>
Below is the CSS being generated
<div class="row">
<div class="product-layout product-grid col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div class="product-thumb">
<div class="image"><a href="http://rangawoods.tryfcomet.com/index.php?route=product/product&path=78&product_id=194"><img src="http://rrrwoods.com/image/cache/catalog/Door/SMD-001-500x500.jpg" alt="SMD-001" title="SMD-001" class="img-responsive"></a> </div>
<div>
My task now is to style only the first column in the row I created. How can I achieve this? I've included an image for reference.