Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

CSS change the colors in order guide Portal

manibaig
Mega Guru

I am trying to change color of field label and "options" in an order guide. i have done this in past for other pages using CSS part of the widget.  which CSS properties i should be using?

Thanks

 

find_real_file.png

1 ACCEPTED SOLUTION

manibaig
Mega Guru

To change the color of variable field labels, i tried this option (this would apply throughout the site though). 

find_real_file.png

View solution in original post

5 REPLIES 5

SatheeshKumar
Kilo Sage

for options override the below css property in your widget

 

.options {
color: $primary;
}

 

for labels:

span.text-muted.m-l-sm.step-text{

color: ff34fe;

}

 

the above should work

this one didn't work

span.text-muted.m-l-sm.step-text{

color: ff34fe;

}

Can u try the below .step-text{ color: ff34fe; }

i saw another thread which suggests to use annotation tab to change the label color

 

find_real_file.png