How can one change the alignment on input fields ?
How can one change the alignment on input fields ?
Hi Adriano,
You would need to create CSS asset:
codeinput.alignRight {
text-align: right;
}
input.alignCenter {
text-align: center;
}/code
Then in Input component properties set "Class Name": alignCenter or alignRight.
Thank you....