Page 1 of 1

align number right side

Posted: 07 Jun 2016
by Raju
Hi

I have a list with numbers: how do I show number in fields i a form alignet right side

Re: align number right side

Posted: 08 Jun 2016
by Dmitry Kozlov
Hi, Please, try to paste the following code into CSS-editor of Forms Designer:

Code: Select all

#fd_form {
    direction: rtl;
}

Re: align number right side

Posted: 10 Jun 2016
by Raju
Thanx. I got the numbers aligned starting from right in the field. But how to only adjust the field info, without moving the title and the fild as well to the right?

Re: align number right side

Posted: 11 Jun 2016
by Dmitry Kozlov
Replace the previous CSS with this:

Code: Select all

#fd_form .fd_control {
    direction: rtl;
}