I you are using V2.5+ without Legacy markup, here are some CSS customizations that may help.  The CSS can be added to HIPAA Forms/Settings/Forms CSS.


As stated in the Forms CSS, there are three prefixes available.  The examples below do not have any of the prefixes.  So the result will be same in the backend and PDF generate.  If you only want to PDF generate, for example, add the .pdf-body prefix.  The backend will remain default and PDF will have CSS customization.


For the Print, the CSS will need to be wrapped in @media print{...}


Below are some examples that may be helpful


/* remove all checkboxes non-checked labels */

.cm-hipaa-forms-checkbox-not-checked-wrapper,

.cm-hipaa-forms-checkbox-not-checked-wrapper + label {

    display: none;

}


Without CSS                                                        With CSS


/* remove all radios non-checked labels */

.cm-hipaa-forms-radio-not-checked-wrapper,

.cm-hipaa-forms-radio-not-checked-wrapper + label{

    display: none;

}


/*hide a specific field where 126 is field ID and 15 is field ID*/

.cm-hipaa-submitted-form-fields #field_126_15 {

    display: none;

}