I'd like to change the color of the prices in the product category listings.
I edited my CSS to make td.productListings-data red, but that changed both the product's descriptions and price to red. Is there something for just the price?
I'd like to change the color of the prices in the product category listings.
I edited my CSS to make td.productListings-data red, but that changed both the product's descriptions and price to red. Is there something for just the price?
A link directly to the page you want adjusted
Zen-Venom Get Bitten
http://jandmmodels.net/index.php?mai...ndex&cPath=1_2
I would like to change the prices listed to red instead of black.
Any ideas on this one?
this is how i did it:
look for the line 112 in includes/modules/YOURTEMPLATENAME/product_listing.php...
$lc_text = $lc_price;
now change it to something like this...
$lc_text = '<span class="greenText">' . $lc_price . '</span>';
then add the classname "greenText" to your CSS file, and adjust properties to suit. this won't affect formatting for special prices etc. as that is defined elsewhere. to do this requires work on the function that actually gets the prices themselves.
hope this helps.
Oh thank you. That worked!