Link to home
Start Free TrialLog in
Avatar of starhu
starhu

asked on

Joomla - Virtuemart - recolor the "call for the price"

Hello,

The product flypage has the following:

echo $product_price

I need to color it

This doesn't work:

<div style="color:#6600CC;">
<?php
            echo $product_price
            ?>
</div>

Thank you
Avatar of COBOLdinosaur
COBOLdinosaur
Flag of Canada image

What is the contents of the string $product_price, I it just a value or is it a line of code.
Avatar of Panagiotis S
you have to change the .productPrice which is the theme.css of your theme in virtuematt
Alternatively, have you tried:

 
<?php 

 echo '<span style="color:#6600CC">' . $product_price . '</span>';

?>

Open in new window

Avatar of starhu
starhu

ASKER



I have modified the theme.css like this but nothing changed:
.productPrice {
      font-weight:bold;
      white-space: nowrap;
      color:#6600CC;
      
}

Link:
http://www.duestelle.hu/index.php/Lady-Kama/MINTAS-HARISNYAK/CONSAY-CATWALK-1.html
where is the price?
Avatar of starhu

ASKER

See below: (I encircled with green - it means call for the price or choose from the list)

User generated image
ASKER CERTIFIED SOLUTION
Avatar of starhu
starhu

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
inserted custom code!!!!
Avatar of starhu

ASKER

My colleague solved it