Page 1 of 1
Field description text width
Posted: 28 Jun 2017
by Adam Reyes
Is there a way to decrease or control the width of the description text under the form fields? I can't seem to find a way to do it in forms designer and any CSS I use doesn't seem to work.

- 2017-06-28_14-51-52.jpg (25.54 KiB) Viewed 3075 times
Re: Field description text width
Posted: 29 Jun 2017
by Dmitry Kozlov
Please, insert the following code into CSS-editor:
Code: Select all
.fd_field .ms-metadata {
color: red;
}
Re: Field description text width
Posted: 29 Jun 2017
by Adam Reyes
That just changes the color but it will not decrease the width of the text field description. It also seems to affect all the description fields and I just need it to affect just one field. I'm trying to decrease the description text down to a width of 100px
Re: Field description text width
Posted: 30 Jun 2017
by Dmitry Kozlov
Hi Adam,
Please, try this:
Code: Select all
.fd_field[fd_name='FieldName'] .ms-metadata {
width: 100px;
display: block;
}
Replace 'FieldName' with the internal name of the field which description you want to adjust.