Built something you're proud of? Tell the story. A quick G2 review of App Engine or Build Agent helps other developers see what's possible on ServiceNow. Share your experience.

How to make text as bold and the red color

Kuma2
Tera Contributor

Hi team , 

Below is the screenshot , Requirement is Sort description  should be on bold and the red color .

Looking forward to help in this .

 

regards 

pramodfind_real_file.png

 

2 REPLIES 2

Mike Patel
Tera Sage

try adding <b style="color: red;"> in frond and add </b> at the end within short description 

Sanjay Bagri1
Tera Guru

Hi ,

You Can use this code . With the help of Client script able to change the color and font size also 

In onload (){

g_form.getcontrole (field name).style.color= 'red';

g_form.getcontrole (field name).style.fontweight='bold';

}

It is working in my system. Try it 

 find_real_file.png

Please remember it mark as correct and helpful .

Thanks 

Sanjay Bagri.