Icon/square in Nintex Forms Attachment control


Badge +3

Hello,

 

when I add an attachment control to a form, it looks like this:

 

2335i62F2053848E8D2B3.png

 

It is not looking better, if the form is working in "real life":

 

2336i4271D46786DA8BC2.png

 

Is there a function behind? How can I get rid of the icons in the red frame? 

 

Thanks,


7 replies

Badge +8

What CSS class is being added to it? I see the boxes in the designer view, but not on my actual form.

This is the CSS class added to mine: nf-form-input nf-section

 

Regardless, you could use the DOM Explorer to find the CSS and edit it in the custom CSS part of your form. 

 
Badge +17

Expand the control size and it should look better. This might be possible to hide with CSS, but I would not do this unless you absolutely have to. 

Badge +3

Hello,

 

unfortunately this did not work. The square are shown even if I delete the control add the control from the tool box again. Any other ideas?

 

Thanks

Userlevel 5
Badge +14

You can use the following CSS rule to hide those images. 

[data-formcontroltypeid="5f8b447a-4195-485b-9a04-477d7f24be73"] img[src*="rect"]{
  display:hidden;
  visibility:none;
}

This should hide them from ANY Attachments Control. 

Badge +3

Solved with own css rule

Badge +17

@panc can you share a screenshot or what the CSS looked like to solve this. It would really help other users who may run into a similar situation and want to do the same thing. Also showing where you applied the CSS is helpful as well.

 

Thanks

Badge +3

the icons are positioned with a table. I changed the size of the columns.

Reply