Hello,
I show a header in my applications, but all letters where shown in upper case. Is it possible to deactivate this and write with upper and lower case
I tried this in a GRID a there the title is shown with upper/lower case as set
But in a FORM the title is indeed changed to UPPERCASE using text-transform: UPPERCASE
so add this code to onload event of FORM
?><style>
.scFormHeaderFont {
text-transform: initial !important;
}
</style><?php
1 Like