Skip to main content
Nintex Community Menu Bar
Question

Is there any way to hide the Label on a Template Field?

  • July 10, 2024
  • 8 replies
  • 25 views

Forum|alt.badge.img+6

I would like to hide the Label part of a Template Field so the Template data can use 100% of the row and not be shared with the Label data and Template data. So I don’t want a blank Label, I want the label to not be on the page at all, just display the template data.

See below.

This topic has been closed for replies.

8 replies

Forum|alt.badge.img+3
  • July 10, 2024

Hi Jeffrey

Try this:

.nx-basicfieldeditor-item-label{<br> display:none !important;<br>}

If you want to do that just on one particular field, add a class to your field.

.yourClass .nx-basicfieldeditor-item-label{<br> display:none !important;<br>}

Cheers


Forum|alt.badge.img+6

Beautiful.   That worked perfectly.

Thank you very much.


Forum|alt.badge.img+3

Create an inline css class with the following code

.hidelabel .nx-basicfieldeditor-item-label{ display:none; }

then on your template add in the css field the following

hidelabel


Forum|alt.badge.img+3

you have to be pretty quick around here!
🙂


Forum|alt.badge.img+13

Or you can use the “Label above Field” Display mode on the Field Editor, and change the Label to a single space, e.g. " ".


Forum|alt.badge.img+17
  • Nintex Employee
  • July 10, 2024

Zach for the win! 


Forum|alt.badge.img+6

Thanks everyone for the assistance.  I now have this working with two solutions (CSS or  Field Editor settings).


Forum|alt.badge.img+8

I Have the same question. What CSS should i use to hide only one field in the field editor? I don’t understand the word yourClass in the above comment . can you tell me how to solve the issue. Thanks.