Label Formatting in a Form

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>

  1. Just make sure to change “.scFormLabelOdd” to your selector (View your HTML source code to get it).
  2. Make sure to use !important to override the previous CSS style.
1 Like