Hey there everyone,
I just was wondering how I can make the price of my product show as the color red instead of black; I’d also like to know how to add a little tag beside the price that says “limited time”.
Thanks.
Hey there everyone,
I just was wondering how I can make the price of my product show as the color red instead of black; I’d also like to know how to add a little tag beside the price that says “limited time”.
Thanks.
Hi @MusicMasks ,
We can assist you better if you provide your website. Thank you
https://www.themusicmasks.com/
Thanks.
Hi @MusicMasks ,
Thank you. Here is the code below.
span.price-item.price-item--sale.price-item--last {
color: red;
}
span.price-item.price-item--sale.price-item--last::after {
content: "Limited time";
color: #fff;
background: rgb(51, 79, 180);
padding: 5px 10px;
font-size: 10px;
border-radius: 10000px;
}