mmendes
(Mike M)
1
Hello,
I would like to vertically center the question text of a single-line text field to the answer. Something like this:
How would
you like the [Answer]
response?
Is there a way to vertically align the question text to be centered on the field?
Thanks,
Mike M.
Dear @mmendes,
First, give your field's cell a custom Class:
Then use it to center control in the field:
.my_cell .form-group.row{
align-items: center;
}
Not ideal, but works:
mmendes
(Mike M)
3
Awesome @Nikita_Kurguzov , that's exactly what I was looking for. Thanks!