
Originally Posted by
52cardz
I have also changed to the column layout grid, If that makes any difference.
Yep, it makes a difference. :-) Though I'm not sure if we're talking about the same thing, because in my column grid site, I don't have the productlisting-data tag on a category page with products. What I'm proposing below would change the font size on a page like this:
http://www.zencart137.jadetrue.com/i...=index&cPath=1
Open up includes/modules/YOUR_TEMPLATE/product_listing.php (if you don't already have it in YOUR_TEMPLATE folder, make these changes, then save the file to includes/modules/YOUR_TEMPLATE/ folder, so that when you upgrade, the adjustments are saved).
Find:
Code:
case 'PRODUCT_LIST_PRICE':
$lc_price = zen_get_products_display_price($listing->fields['products_id']) . '<br />';
$lc_align = 'right';
$lc_text = $lc_price;
and replace with:
Code:
case 'PRODUCT_LIST_PRICE':
$lc_price = '<span class="listingPrice">' . zen_get_products_display_price($listing->fields['products_id']) . '</span><br />';
$lc_align = 'right';
$lc_text = $lc_price;
now you have a new class that you can define in your css. Add:
.listingPrice {
font-size: 110%;
}
(or whatever size you'd like) :-)