Thank you stevesh, I would have never found that file!
For anyone else with this same issue, look for this file:
includes/modules/product_listing.php
Find this code (line #149 - 152)
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 change to this:
Code:
case 'PRODUCT_LIST_PRICE':
$lc_price = zen_get_products_display_price($listing->fields['products_id']);
$lc_align = 'right';
$lc_text = '<div class="pprice">'.$lc_price. '</div>';
(I also removed the extra break here: . '<br />' but that is up to you)
Don't forget to save this file in: includes/modules/YOURTEMPLATE/product_listing.php.
Last add this .pprice class in your stylesheet.css with the definitions to modify the look.