How to make bold letter for label field in Service Portal in ServiceNow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-21-2022 06:12 AM
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

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-24-2022 12:20 AM - edited ‎10-24-2022 12:42 AM
Just add the CSS in the Page Specific CSS field, when viewing sc_cat_item page.
#requestor_information span {
font-weight:bold;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-24-2022 10:13 PM
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

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-25-2022 12:23 AM - edited ‎10-25-2022 12:23 AM
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;
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-02-2022 05:22 AM
Did you get it working?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-04-2022 03:13 AM
Hi Mark,
same issue . checking on alternatives.