How to make a info message font BOLD
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-06-2023 06:17 AM
From BR i am populating on info message on the RITM form, i want that font to be bold , how to do that.
before is my line of code i am using.
var message = '<div style="background-color:red;color:white">SLA Over 75%<br/>';
gs.addInfoMessage(gs.getMessage(message));
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-06-2023 11:22 AM
You can accomplish this by adding the bold tag within the div:
var message = '<div style="background-color:red;color:white"><b>SLA Over 75%</b><br/>';
gs.addInfoMessage(gs.getMessage(message));