Hide paragraphs on Review and Submit
-
karen_hindAsked on November 02, 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;
}
-
AhmedAnswered on November 03, 2021 at 04:47 AMJotform Support
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_hindAnswered on November 09, 2021 at 06:24 PM
Hi, Thanks for your answer - this worked!