Hello - I'd like to be able to change the width of labels in details pages so I can make them smaller relative to the content of the field. At the moment the label is the same size as the field, which pushes the text in the field to several lines unnecessarily.
Is this possible?
Thanks
Add the following CSS snippets with the correct scene/view/page numbers and adjust the width to your needs.
LABLE FOR SPECIFIC FIELD:
#view_1 .field_1 .kn-detail-label {width: 100px;}
ALL LABELS FOR SPECIFIC VIEW:
#view_1 .kn-detail-label {width: 100px;}
ALL LABELS FOR SPECIFIC SCENE:
#kn-scene_1 .kn-detail-label {width: 100px}
1 Like