Where is the strikethrough text style?

  • ESFA
    Asked on July 4, 2019 at 7:59 PM

    Hi,

    How do you strikethrough text now in a text area?

    It only appears to be a bold, italic and underline.

    There used to be an option to do that under the previous designer.

    Thanks.

  • jherwin
    Replied on July 5, 2019 at 1:23 AM

    Do you mean the text field? If so, please check the screenshot below for reference:
    1562303993strike Screenshot 10
    If you are referring to a textbox, you can use custom CSS code to apply linethrough.

    Here's a sample CSS code:

    input#input_4 {
        text-decoration: line-through;
    }

    Guide: How-to-Inject-Custom-CSS-Codes

    Demo Form: https://form.jotform.com/91850518172963

    Please give it a try and let us know how it goes.

  • ESFA
    Replied on July 8, 2019 at 9:59 PM

    Many thanks.