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.
See below.

-
1,454 Points
Posted 3 years ago
-
694 Points
Hi Jeffrey
Try this:
Try this:
.nx-basicfieldeditor-item-label{If you want to do that just on one particular field, add a class to your field.
display:none !important;
}
.yourClass .nx-basicfieldeditor-item-label{Cheers
display:none !important;
}
-
1,454 Points
-
420 Points
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
.hidelabel .nx-basicfieldeditor-item-label{ display:none; }
then on your template add in the css field the following
hidelabel
Zach McElrath, Employee
-
49,648 Points
Or you can use the "Label above Field" Display mode on the Field Editor, and change the Label to a single space, e.g. " ".
-
1,454 Points
Thanks everyone for the assistance. I now have this working with two solutions (CSS or Field Editor settings).
Avinash
I don't understand the word yourClass in the above comment .
can you tell me how to solve the issue.
Thanks.