Using Palo Alto theme, how can I remove strike through line on sold out product variants?

Hi @st2000 ,

You’ve applied the text-decoration to the span with the class sold-out.

Instead, please use the following code:

.radio__button.sold-out .radio__label,
.radio__button.unavailable .radio__label 
{ 
text-decoration: none; 
}

If this still doesn’t work, you can add !important to the text-decoration like this:

.radio__button.sold-out .radio__label,
.radio__button.unavailable .radio__label 
{ 
text-decoration: none !important; 
}

If you encounter any issues, please feel free to reach out to us.

I hope this helps! If it does, please like it and mark it as a solution!
Regards,
Sweans