Quote Originally Posted by isvara99###################### View Post
I followed your earlier advice. I reload a fresh index.php file and that fixed the problem.
Thanks for your advice. You have been helpful. I'll send a donation as soon as I start making money on the site.
One question, how do I change the color of the product price on the main page. I can't seem to locate it on the css file.

thanks,

Isvara dasa.
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;}