Hi,
can anyone help me to customize the code in category_items.php to get numbered cols (li.classes) instead odd/even in each row?
<?php for ($i=($this->limitstart == 0 ? $leadnum : 0 ); $i<$count; $i++) : ?><li class="<?php echo (($this->limitstart == 0) ? ($i+$leadnum)%2 : $i%2) ? 'even' : 'odd'; ?>">
So if cols are set in backend to 3:
the cols (li) should has the classes col1, col2, col3 for each row.
if cols are set to 2:
col1, col2 for each row.
Thanks!