Add strike through / line through on text

Hi there,

I am looking to add a text decoration (line-through). This is to be used on Dynamic text - so adding a style to inner html does not work?

preferably would like to do it through 'Additional HTML Attributes'

Any help here would be greatly appreciated.

Thankyou!

Define an appropriate CSS class in your Head HTML:

<style>
.linethrough {
  text-decoration: line-through !important;
}
</style>

Add the classname to your textfield inside the identity inspector:

image

Best regards, Kalle