Align field title - Non template form

Hi Team,
Can you enable the option to allow us to set the alignment of fields titles in normal forms ( non template ). It is by default set to the left, but we need it to be at the right.

image

Thanks

Hi @Jose_Carrillo,

Sure. Logging it as a feature request. Meanwhile here is how to do it now.

  1. Add a custom class attribute to your form:
  2. Add the following CSS to client\src\styles.css:
.right-aligned .col-form-label {
  text-align: right;
}

Thanks Atanas, the workaround works!