Arabic textbox labels appear on the left

0
I have this issue in Mx10.3.1 that occurred with the textbox labels only, but the normal text is working fine. The default should appear on the right, not on the left.
asked
1 answers
0

Hi Mohamed

 

You can solve this by changing the text-align property of the control label class as such: 

image.png

 

I suggest you overrule the whole class as such in your scss files: 

.form-group .control-label {
         text-align: right; 
   }

This link should provide you with all information required: https://docs.mendix.com/howto/front-end/customize-styling-new/

answered