Well, is not designed to be changed by default. You will need to make some changes in a few files. There is currently no style surrounding the price, so if you want to style it, you'll need to add a <div> around that section.
Open up
includes/modules/YOUR_TEMPLATE/new_products.php,
includes/modules/YOUR_TEMPLATE/featured_products.php,
includes/modules/YOUR_TEMPLATE/specials_index.php
Find this piece of code:
'</a><br />' . $products_price
change ONLY THAT to this (make sure you're replacing the exact code above):
'</a><br /><span class="indexPrice">' . $products_price . '</span>'
Then you'll be able to style it in the css like this:
.indexPrice {color:#990000;}



Reply With Quote
