Hi @deanrix,
It is not possible to find out the products to have more than one price only by CSS. You need to customize Woocommerce to add an indicator that shows it has more than one price, for example, a class or something.
That is outside of our support scope and you need to hire a developer as it is a customization request.
From what I can find in the page you can use the code below to add the From
text before the Variable Products if that helps:
.woocommerce .product-type-variable .price::before {
content: "From";
margin-bottom: 15px;
font-size: 25px;
font-weight: bold;
}
The CSS code above is meant to be a starting point for your customization and not a final solution.
1- I have found the proper CSS code selector using the Chrome browser Developer Toolbar:
https://www.youtube.com/watch?v=wcFnnxfA70g
2- For the CSS code itself, I suggest that you get started with this tutorial:
https://www.youtube.com/watch?v=yfoY53QXEnI
Thank you.