Hi,
I’m using TextArea components on a Form. The caption of these TextAreas is vertically centered (see picture below).
Is it possible to get the vertical caption alignment changed to top?
Best regards
Andreas

Hi,
I’m using TextArea components on a Form. The caption of these TextAreas is vertically centered (see picture below).
Is it possible to get the vertical caption alignment changed to top?
Best regards
Andreas

Hi Andreas,
Sure, add the following snippet to your theme
.v-formlayout-captioncell {
vertical-align: top;
}
Note that this will affect all form captions in your application unless you target it to a specific form.
HTH,
/Jonatan
Jonatan,
thanks a lot for your super fast answer!
Andreas