Record producer - how to highlight the question text
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-09-2016 02:29 AM
I would like to highlight the question text in the variables i a record producer. Anyone, that have the recipe to how I can change the text to bold.
Variable in a record producer:
The form in action..
- Labels:
-
Incident Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-09-2016 02:45 AM
Hi Palle,
Below thread may be useful
Modifying the Label of Form Fields With Client Scripts - ServiceNow Guru
Change a field's label using script
Thanks and regards
Swamy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-09-2016 02:46 AM
inspect the element and add css. Apply same css using style tags in a UI Macro or using some onLoad client scripts. Below css should work fine
label>span.sn-tooltip-basic {
- font-weight: bold;
}
Note: These customizations may not work after version upgrade because elements selectors may change with version upgrade.