Page 1 of 1

How to reduce width of a people picker field?

Posted: 09 Jul 2014
by eedoh
I tried with

ms-inputuserfield ms-inputBox{
width: 200px;
}

But with no results.

Re: How to reduce width of a people picker field?

Posted: 10 Jul 2014
by Dmitry Kozlov
Hi,

Please, assign a CSS class to a people picker field e.g. small-peoplepicker and define it following way in CSS-editor:

Code: Select all

.small-peoplepicker .ms-usereditor {
	width: 200px;
}

Re: How to reduce width of a people picker field?

Posted: 11 Jul 2014
by eedoh
It worked.

Thanks