By default, all product status tags are the same color set in the theme. I would like to have sold out be orange, and other status remain blue.
Would this be changed on the CSS? or on the individual pages?
Any suggestions would be appreciated!
My solution was - in the the {% case product.status %}
I put a class in 'sold out' in the products.html code.
{% assign product_status = '<span class="prod-thumb-status-so">Sold out</span>' %}
New Code:
{% case product.status %}
{% when 'active' %}
{% if product.on_sale %}{% assign product_status = 'On sale' %}{% endif %}
{% when 'sold-out' %}
{% assign product_status = '<span class="prod-thumb-status-so">Sold out</span>' %}
{% when 'coming-soon' %}
{% assign product_status = 'Coming soon' %}
{% endcase %}
In the CSS I put:
.prod-thumb-status-so{
background: orange;
padding:20px;
border-radius:50%;
}
the padding 20px; and border-radius:50%; will cover up the original color
on the HTML side, have it call a different div class for "sold out"
Then on the CSS side, you can set the color different based on the div class