Changing the position of text in a text box

0
Why is it that in Studio Pro version 7.23.4 it was possible to right-justify text placed in the data view with the class text-right, but not in Studio Pro version 9.6.6? Also, in Studio Pro version 9.6.6 Is there a way to right-justify characters in a text box placed in a data view?
asked
1 answers
0

Hi Daina,

I just tried text-right on a dataview and this will still align all texts to to right, are you sure there is no other styling that overrules this?

For aligning text in a textbox, you can add a custom class to your stylesheet with css like:

.yourCustomClass input {

text-align: right;

}

Hope this helps!

answered