Page 1 of 1
Formating Seelction Optional Field with Fill Option
Posted: 03 May 2017
by gaj
Dear Dimitry,
How to format (make longer) a Field with "Fill Option" like the attached Picture (yellow)?

- Option.PNG (11.84 KiB) Viewed 2558 times
thx for help
Re: Formating Seelction Optional Field with Fill Option
Posted: 03 May 2017
by Dmitry Kozlov
Please, insert the code into CSS-editor:
Code: Select all
[fd_name='FieldName'] input[type='text'] {
width: 400px;
}
Replace 'FieldName' with the internal name of your Choice field.
Re: Formating Seelction Optional Field with Fill Option
Posted: 03 May 2017
by gaj
thx Dmitry, works well

Re: Formating Seelction Optional Field with Fill Option
Posted: 09 May 2017
by GregReno
Plus, if you did not know it, you can change its label with this
$('label[for*=FIELDNAMEField_ctl00_ctl07]').text('Other (specify)');
$('label[for*=FIELDNAMEField_ctl00_ctl07]').html('Custom:');
This?
$('label[for*=FIELDNAMEField_ctl00_ctl07]').html('Andere (bitte angeben)');