Right-justify numeric attributes in a text-box

2
Is it possible to right-justify the display of numeric attribute (float, integer, currency etc.) in a text box on a dataview? If so, how?
asked
1 answers
2

You can add the following style to the boxes you want right-aligned.

text-align: right;

You can also add a class to each box you want right aligned and set it up in your theme. Just remember to clear your browser-cache before testing it, to make sure it appears correctly.

answered