Reformatting Body Text Size in Request Offerings
Hello,
I want to change the size of the default Body Text in Request Offerings (e.g.: the size of the text that appears under the "Instructions"), and other "display" fields on the form.
We find the text a bit too small by default
Also, I found an earlier post on how to update the Input Prompt fields on a Request Offering..
e.g.:
.editor-label {
text-transform: capitalize;
font-size: small;
}
How do I achieve the same thing on the Incident and Service Request forms?
Thanks!
Adrian
Best Answers
-
seth_coussens Member Ninja IT Monkey ✭✭✭✭You can actually do it in the same manner that you did the request offering forms using CSS.
You can find more information on this here:
https://support.cireson.com/KnowledgeBase/View/43#/
If you have additional or specific questions, let me know!6 -
carrie_medine Member Advanced IT Monkey ✭✭✭Hello,
Something like this in your custom.css file may give you what you are looking for:
#requestOfferingCont {
font-size: 14px;}
#requestOfferingCont .editor-label {
text-transform: uppercase;
font-size: 14px;
font-weight: bold;
}
.defined-form .control-label {
text-transform: uppercase;
font-size: 14px;
font-weight: bold;
}
7
Answers
You can find more information on this here:
https://support.cireson.com/KnowledgeBase/View/43#/
If you have additional or specific questions, let me know!
Something like this in your custom.css file may give you what you are looking for:
#requestOfferingCont {
font-size: 14px;}
#requestOfferingCont .editor-label {
text-transform: uppercase;
font-size: 14px;
font-weight: bold;
}
.defined-form .control-label {
text-transform: uppercase;
font-size: 14px;
font-weight: bold;
}
Thanks Carrie / Seth!
After switching on developer mode in IE, it was all much easier.
Got it perfect now.
Also didn't know you could do "#requestOfferingCont" in css. so that was helpful
Thanks again.
Adrian