Hey,

Yeah the long way sounds like doing long division when you were in elementary school.

So the code that you gave me works besides when you aren't having a price for sale

This is what it looks like when you don't have a discount



The code that I have is
PHP Code:
 if ($display_normal_price == 0) {
      
// don't show the $0.00
      
$final_display_price $show_special_price $show_sale_price $show_sale_discount;
    } else {
      
$final_display_price 'Retail:&nbsp;' $show_normal_price '<br />Today:&nbsp;' $show_special_price $show_sale_price $show_sale_discount;
    } 
Have any idea why it's doing that?