Hide paragraphs on Review and Submit

  • karen_hind
    Asked on November 2, 2021 at 11:24 PM

    Hi,

    I'd like to hide paragraphs of text within the form on review and submit. I've attempted adding the code to the Form Designer however it hides the paragraphs in build mode and not at Review and Submit. I'm unable to share the form as it is confidential data.

    This is the code I copied from another support solution:

    .form-html{

      display:none;

    }

    #previewContainer > ul > li.html{

     visibility: visible!important;

    }

  • Ahmed_S
    Replied on November 3, 2021 at 4:47 AM

    Hello Karen,

    Thank you for contacting Jotform Support.

    Please use the below CSS code with your form.

    How to Inject Custom CSS Codes

    .no-label{
      display: none!important;
    }

    Let us know if you need further assistance, we are happy to help.

  • karen_hind
    Replied on November 9, 2021 at 6:24 PM

    Hi, Thanks for your answer - this worked!