Change the case of Request Offering prompt text
Does anybody know how to change the case of the text prompt on Request Offerings? Not liking the 'shouty' uppercase.
I'm sure I saw a KB article about it somewhere but can't find it now.
Best Answer
-
joivan_hedrick Cireson Consultant Advanced IT Monkey ✭✭✭Aye, this one you can do pretty quickly with some CSS. Paste the following into your custom.css file located in inetpub\CiresonPortal\CustomSpace\ folder.
.editor-label {
text-transform: none;
}3
Answers
the code that you need for 6.x is
#requestOfferingCont .control-label {
text-transform: none;
}