The modifications go in /includes/modules/your_template/product_listing.php.
(around line 67)
PHP Code:
$list_box_contents[0][$col] = array('align' => $lc_align,
'params' => 'class="productListing-heading"',
'text' => $lc_text );
}
add
col' . ($col + 1) . '
as shown:
PHP Code:
$list_box_contents[0][$col] = array('align' => $lc_align,
'params' => 'class="productListing-heading col' . ($col + 1) . '"', // dweingart mod
'text' => $lc_text );
}
and (around line 170)
PHP Code:
$list_box_contents[$rows][$col] = array('align' => $lc_align,
'params' => 'class="productListing-data"',
'text' => $lc_text);
}
add
col' . ($col + 1) . '
as shown:
PHP Code:
$list_box_contents[$rows][$col] = array('align' => $lc_align,
'params' => 'class="productListing-data col' . ($col + 1) . '"', // dweingart mod
'text' => $lc_text);
}
In your stylesheet, you can then declare styling/position for any column number.