How to make bold letter for label field in Service Portal in ServiceNow

Vineela1
Tera Contributor

Hi Team,

Please suggest how to make "label" type text bold in Service Portal.

1) I tried with getLabel('field') , getControl('field') client scripts at catalog item. But changes are not reflecting on Service Portal.

2) Disabled "glide ui escape_text" property and added html tags. But still not working on the service portal.

 

changes visible on ServiceNow Instance but it is not reflecting in Service Portal . Please suggest inputs on this issue.

 

Thanks and Regards,

Vineela 

18 REPLIES 18

Just add the CSS in the Page Specific CSS field, when viewing sc_cat_item page.

 

Skærmbillede 2022-10-24 094104.png

 

#requestor_information span {
 font-weight:bold;
}

 

 

 

Hi Mark,

Thanks for the information. Updated accordingly. But still not reflecting these changes on sc_cat_item page. For CSM portal also same , page will apply . Please confirm on this.

 

Regards,

Vineela

Sorry, though it was the label on one of fields you wanted bold. I don't have something similar to test on, but may this work:

 

 

#requestor_information label {
 font-weight:bold;
}

 

Did you get it working?

Hi Mark,

same issue . checking on alternatives.