Change font size

Sidhu9
Tera Contributor

Hello Experts,

 

How to change font size from Normal to BOLD, for reference I have attached a screenshot.

 

Thanks

SrinuFS.JPG

Thanks& Regards
Sidhu !
7 REPLIES 7

Anurag Tripathi
Mega Patron
Mega Patron

Is this just for these 4 fields or the whole form? OR whole platform?

-Anurag

Hi @Anurag 

 

Just only  4 fields

Thanks& Regards
Sidhu !

Don't think it will be possible on the label, using styles you can modify the look of the value of field.

-Anurag

I was able to change the color of the field label using the script below, you can use that in a onload client script.

 

var labelcolor = g_form.getLabel('<field name>'); 
    labelcolor.style.color = 'red';

 

couldn't make it bold though

-Anurag