Hi,
You can add this snippet to your Custom CSS:
#dffs_YOUR_FIELD_NAME select{
height:23px;
}
Replace YOUR_FIELD_NAME with the internal name of your field, and change 23px to match the height you like on the select.
If you like to add it to all selects in the form, add this code:
.ms-formtable select{
height:23px;
}
Alexander
-
This reply was modified 5 years, 11 months ago by Alexander Bautz. Reason: Modified the code snippet