Menu

Is it possible to left align the data in numeric calls?

0 votes

I would like to left-align numeric form values.

in Customization by (7.0k points)

1 Answer

0 votes
 
Best answer

Using CSS you can change the numeric alignment. You can set a custom CSS class for the field if you want to be specific or you can just include the following CSS in your custom CSS file.

In your custom CSS file you can include the following...

/* To cover all numeric values */
.field-value input[type='Number'] {
   text-align: left;
}

/* To specify a single field, note the space after the custom class */
.customFieldClass input[type='Number'] {
   text-align: left;
}

For help on creating a custom CSS file see: CSS Field

by (64.3k points)
selected by
Welcome to the dbFront Q&A site, where you can ask questions and receive answers from other members of the community.
 | Minimalist Answer Theme by Digitizor Media
 |
Powered by Question2Answer
...