Page 1 of 1

CSS Control Person Picker

Posted: 06 Oct 2016
by schuess
I am having trouble setting the height of a field with type = user. (aka people picker) using CSS.


THIS DOES NOT WORK!

/* People picker */

.peoplePicker .ms-usereditor {

height: 100px !important;

}



Help

Re: CSS Control Person Picker

Posted: 07 Oct 2016
by YuriyMedvedev
Use this code, please:

Code: Select all

/* People picker */
.sp-peoplepicker-editorInput {

    height: 100px !important;

}

Re: CSS Control Person Picker

Posted: 07 Oct 2016
by schuess
That worked. Thanks