VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: websmith on April 30, 2016, 02:46:50 AM

Title: Cant change color on PricediscountAmount
Post by: websmith on April 30, 2016, 02:46:50 AM
Joomla 3.4.8
VM 3.0.12

I am trying to spice up the pricing values by making the final price bolder and darker and wanted to make the discount price red.

I was able to make prices bolder but cant seem to change color for the life of me. This is what I added to vm-ltr-site.css

.PricesalesPrice {
  font-weight: bold;
}

.PricediscountAmount {
  color: #F00;
}

Bold works but color doesnt. Any idea why? Appreciate it. Trying to get this slowly but surely.
Title: Re: Cant change color on PricediscountAmount
Post by: jenkinhill on April 30, 2016, 10:23:44 AM
.PricediscountAmount  {
color: #FF0000 !important;
}

Works with default VM templates.
Title: Re: Cant change color on PricediscountAmount
Post by: websmith on April 30, 2016, 15:27:03 PM
Lifesaver! Thank you very much.