Is It Possible To Turn Off The Capitalization Of Every Word In Request Offerings?
Is It Possible To Turn Off The Capitalization Of Every Word In Request Offerings?
I've spent more time than I care to explaining that we cannot turn that off.
Best Answers
-
Geoff_Ross Cireson Consultant O.G.
Hi Jason,
I hate to make you a liar but it can be turned off.
The baked in styling is what does it, but you can override with the following snippet in custom.css
label { text-transform: none; }
This affects all "labels" in the portal, if you only want do affect the RO page, you will need to be a little more specific with this rule.
Geoff
0 -
Simon_Zeinhofer Customer Ninja IT Monkey ✭✭✭✭
I received that code from John Doyle some time ago (we had the same struggle with these capital letters :D ), where it only affects Request offerings
/*Stop Capital Letters*/ #requestOfferingCont label { text-transform: none!important; }
Because we wanted the capital letters to disappear inside work/configuration items as well, we also added
.control-label { text-transform: none!important; }
in the custom.css
0
Answers
Hi Jason,
I hate to make you a liar but it can be turned off.
The baked in styling is what does it, but you can override with the following snippet in custom.css
This affects all "labels" in the portal, if you only want do affect the RO page, you will need to be a little more specific with this rule.
Geoff
I received that code from John Doyle some time ago (we had the same struggle with these capital letters :D ), where it only affects Request offerings
Because we wanted the capital letters to disappear inside work/configuration items as well, we also added
in the custom.css
Much appreciated Simon. I'll share with our admin.
Glad it sorted