All words in user prompts are capitalized :(
I think this looks very ugly... I tried overwriting this in the custom.css file, but it seems to have no effect. To my knowledge this should be controlled by ".editor-label"?
I tried overwriting with the following (and even tried "uppercase" to test that it has no effect at all)
.editor-label {
text-transform: none;
}
Best Answer
-
Nicholas_Velich Cireson Consultant Ninja IT Monkey ✭✭✭✭You're close, but it looks like you have the wrong selector. Try "label" instead of ".editor-label"label {text-transform: none;}
In v6, looks like:
Keep in mind that this CSS change will load on every page of the Portal. It might be better to apply the change via JavaScript instead, only when on the Request Offering page.5
Answers
In v6, looks like:
Keep in mind that this CSS change will load on every page of the Portal. It might be better to apply the change via JavaScript instead, only when on the Request Offering page.