Page 1 of 1

Strike through Text in Cards

Posted: Mon Jul 20, 2020 10:40 am
by mlsto
Hello

I am trying to add strike through text in a card pricing table but see it is not supported in the text formatting.

I tried using html in the card <del> and <s> but that does not show either, is there a way to add strike through text in cards.

Thank you

Re: Strike through Text in Cards

Posted: Mon Jul 20, 2020 12:59 pm
by Pablo
In HTML you can use:

Code: Select all

<span style="color:#000000;font-family:Arial;font-size:13px;"><s>strike through text</s></span>
Note that you must include the font-size otherwise the height will be zero.

Re: Strike through Text in Cards

Posted: Mon Jul 20, 2020 1:16 pm
by mlsto
Thank you very much for this