How to make Short description field of Catalog item Bold?

VIKASM535239375
Kilo Sage
How to make Short description field of Catalog item Bold? tried using tag and style table but it did not work.
3 REPLIES 3

jMarshal
Mega Sage
Mega Sage

if you want it to be bold in the Service Portal or Employee Service Centre, I'd think you'll need to modify the widget on the page to be in bold (and it would affect all items that are using that widget on that page, unless you add script to validate against the sysID of the particular item or something)...if you want it bold in SOW, you may be able to do this with UI builder? and if you want it bold in the Next Experience Core UI you're probably outta luck (maybe open an idea on now support to request that as a feature enhancement?)

Rafael Batistot
Kilo Patron

Hi @VIKASM535239375 

 

function onLoad() {
var shortDesc = g_form.getControl('short_description');
if (shortDesc) {
shortDesc.style.fontWeight = 'bold';
}
}