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.
.PricediscountAmount {
color: #FF0000 !important;
}
Works with default VM templates.
Lifesaver! Thank you very much.