Is there a way to have the labels in a form default to Capitalized rather than all lower case?
I think that the labels are based on the database format of the columns
Hi chersey,
Yes you can do it using CSS. Example:
<style>
.scFormLabelOdd {text-transform:uppercase !important;}
</style>
- Just make sure to change “.scFormLabelOdd” to your selector (View your HTML source code to get it).
- Make sure to use !important to override the previous CSS style.
1 Like