Right-align Text label on input field

0
Hello, I'm trying to right align my labels with my text inputs like it shows in the data view, is there an easy way to accomplish this without aligning the input to the right?  
asked
1 answers
3

Hi Brandon

 

You could add the following class to your input widgets: 

 

.rightalignment .control-label {
 Text-align: right;
}

(a quick link to a learning article about implementing css: https://academy.mendix.com/link/paths/123/Style-your-App-with-Sass :) )

As for a method without using CSS, I am not aware.

I hope this helps!

answered