Quote Originally Posted by kuroi View Post
By default there is no obvious hook for the normal price in the current version of Zen Cart (I hear a whisper that this will change in the next major upgrade).

If you want to add tags onto which you can hook some styling (as has been done on the site referred to earlier in this thread), then you could try this ...

... includes/functions/functions_prices.php, find this line
PHP Code:
          $show_normal_price $currencies->display_price($display_normal_pricezen_get_tax_rate($product_check->fields['products_tax_class_id'])); 
and replace it with
PHP Code:
          $show_normal_price '<span class="standardprice">' $currencies->display_price($display_normal_pricezen_get_tax_rate($product_check->fields['products_tax_class_id'])) . '</span>'

Ah found a problem. Doing that works on the front page, but the issue is it has also put the same styling on the prices on a product page, and all multiple listings (new, special, featured), even though for instance, there was already specific styling for them eg...

#productPrices, #reviewsInfoDefaultPrice {
font: 44px Arial;
color: #a30101;
margin: 0 0 16px 0;
display: block;

This made my product prices nice and large - now the new bit of code you have given me is overriding this...