Skip to main content
Nintex Community Menu Bar

Remove input field cell outlines in edit view

  • March 22, 2019
  • 1 reply
  • 14 views

Forum|alt.badge.img+7

How do you remove the input field cell outlines in "edit" view?1168i59903198DA91B519.png

 

1 reply

Forum|alt.badge.img+3
  • March 22, 2019

You can select the field you want to remove the border on and add a CSS Class, say ProjectOwnerField for example. Then add the following custom css for a text field.

.ProjectOwnerField input {
border: 0 !important;
}

 

Or this for a people picker

 

.ProjectOwnerField .ip-container{
border: 0 !important;
}