- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2022 12:13 AM
Hello SN Team,
I am facing challenge in changing the text color of required information box in Service Catalog >> Form (Service Portal)?
I am attaching a screen print (WITH NO sensitive data) for your attention.
Please educate on how to achieve this?
Many thanks,
Kingstan.
Solved! Go to Solution.
- Labels:
-
Service Portal Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2022 12:36 AM
Hi,
Press Ctrl+click on the form. Go to instance in Page editor
Paste below code to CSS section and save it
div#required_information_bottom{
color:blue; //replace blue with desired color code
}
.sc-field-error-label{
background-color : red; //replace red with desired color code
color : black; //replace black with desired color code
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2022 12:36 AM
Hi,
Press Ctrl+click on the form. Go to instance in Page editor
Paste below code to CSS section and save it
div#required_information_bottom{
color:blue; //replace blue with desired color code
}
.sc-field-error-label{
background-color : red; //replace red with desired color code
color : black; //replace black with desired color code
}