I am working with an Opencart E-Commerce website, I need to customize product price font size,
for example:
product price: $ 250.50
i need to set font size for $ = 16px;
250 = 22px;
.50 = 14px;
How can I set different font sizes for a single amount..???
this s my dynamic php code that display price text to my product page:
<span class="price"><?php echo $product['price']; ?></span>
my product list page not a single product with price, there is a lots of product with price list.
thanks for any help, if anybody asked the same question before here, please share with me those links...