- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-27-2017 11:49 AM
I have an integer field that is displaying value to right end, I tried to add style but it only shows up left justified in the list view. How can I have it displayed on the form also left justified?
Thanks
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-27-2017 12:00 PM
You will have to add style to the page with script, either an onLoad Client Script on an individual form or through a UI Script if you want to effect every integer type field. You could do something like this:
jQuery('head').append('<style>.form-control.decimal{text-align:left!important;}</style>')

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-27-2017 12:00 PM
You will have to add style to the page with script, either an onLoad Client Script on an individual form or through a UI Script if you want to effect every integer type field. You could do something like this:
jQuery('head').append('<style>.form-control.decimal{text-align:left!important;}</style>')
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-27-2017 12:35 PM
That worked. Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-18-2017 11:17 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-21-2018 06:50 AM
Styles is the way to go. Tried the script first before reading on but it didn't work. It might not be the script that is at fault. Could be my execution.
However, on decimal fields, the text_align style defintely works on London