I am working with Magento 1.9 and it has this code (in php, file price.phtml
) to echo price in category and product view page:
<?php echo $_coreHelper->currency($_finalPriceInclTax, true, false) ?>
//echo 199,00€
Now I need to display the first number (before comma 199,
) bigger than rest number (00€
)
Maybe I need a separate class for number before comma and the rest.
Any idea?