Strikthrough

im hoping somone can help with some code

id like to add the strikethrough element to an entire heading across my site

how can this be done

You can add a strikethrough to your text using the html method described in our API here: https://www.wix.com/corvid/reference/$w.Text.html#html .

Here is sample code:
$w(“#myText”).html = “

”+ $w(‘#myText’).text + “

”;