How to make a info message font BOLD

vikas mishra748
Kilo Contributor

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

Brad Bowman
Kilo Patron
Kilo Patron

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));