Re-adding the text "From" in front of my product card price

Hi Folks,

I am using the Colorblock theme, and want my product price cards to say “From €X”, instead of "€X’.

I have previously updated the css to include the text “RRP” before the discounted price, which removed the “From” text.

Would anyone be able to let me know how to put it back in?

Thank you!

Hi Folks,

If you changed this in CSS, then you should replace this in CSS back. Go to Online StoreThemes and click Edit code for active theme. In the Assets directory you should find files with .css or .css.liquid extensions. Try to find “RRP” text there and change it.

Thank you, Rabbyte!

I’m looking to keep the “RRP” text where it is for the compare at Price, and add the text “From” before the actual price.

So in the image it would look like “RRP €1,000 From €150,00”

Gotcha, so if you want to do this in CSS, go to Online StoreThemes and click Edit code for active theme. In the Assets directory open component-price.css file and add below code at the bottom of it:

.price--on-sale .price__sale .price-item--sale:before {
  content: "From ";
}

Thank you very much! Really appreciate it :smiling_face_with_sunglasses: