Page 1 of 1

Hide field description

Posted: 19 Mar 2018
by TKay
Hi there,
How do i hide/remove field description from displaying in the form?

Re: Hide field description

Posted: 19 Mar 2018
by Nikita Kurguzov
Dear Tkay,
You can either:
1) Go to List Settings -> Column, and remove description there.
2) Add no-description class to fields where you want to remove description from.

Then add the following code to the CSS editor for #2:

Code: Select all

.no-description span.ms-metadata{
	display:none;
}

Re: Hide field description

Posted: 20 Mar 2018
by TKay
#2 worked perfectly, so simple :-) !!! Thank you Nikita