How i can change text color of required information box in Service Portal? (Topic: Service Portal)

Kingstan M
Kilo Sage

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.

 

1 ACCEPTED SOLUTION

Shruti
Mega Sage
Mega Sage

Hi,

 

Press Ctrl+click on the form. Go to instance in Page editor

find_real_file.png

 

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
}

View solution in original post

1 REPLY 1

Shruti
Mega Sage
Mega Sage

Hi,

 

Press Ctrl+click on the form. Go to instance in Page editor

find_real_file.png

 

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
}