- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2024 02:15 AM
I want to change the color of the help text under the field from red to dark blue, but can't seem to find where the help text is located. Can you give me a hand?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2024 02:36 AM - edited 02-08-2024 02:37 AM
Hi @robertpetrovics, Is this the OOB field? It looks like the field message. ServiceNow has a method called '
g_form.showFieldMsg("cmdb_ci", "Select the Impacted Service", "info");
g_form.showFieldMsg("cmdb_ci", "Select the Impacted Service", "error");
Regards,
Sunil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2024 02:17 AM
My knowledge say OOTB it is not possible, As it is error, so red colour suits here.
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2024 02:22 AM
Hi @Dr Atul G- LNG, it is not an error, the message appears regardless of the number you put inside.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2024 02:24 AM
Try to check in Data Policy
Client script
UI messages
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2024 02:35 AM
Hey @robertpetrovics ,
I presume that it is displayed via g_form.showFieldMsg in Client Script.
Try to look for a client script that is doing that and change the color by using "info" or "warn" as the last parameter (see screenshot). You won't be able to easily set it to dark blue without manipulating the DOM though.
Regards, Ivan