Skip to main content
Nintex Community Menu Bar

Removing the Info-message on a Form control

  • February 15, 2022
  • 0 replies
  • 28 views

Forum|alt.badge.img+8

Topic

How to delete the info message next to a form control? like "Maximum file size allowed"  message next to an attachment control.

 

 

Instructions

his is coded in the attachment control CSS to clearly warn the user of the maximum file size that can be selected.
It can be deleted by editing the form settings > Custom CSS
add the following at the end:
.nf-infomessage
 {
  }.nf-filler-control-inner label
 {
 display : none;
 }