Change font size

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2024 09:05 AM
Hello Experts,
How to change font size from Normal to BOLD, for reference I have attached a screenshot.
Thanks
Srinu
Sidhu !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2024 09:12 AM
Is this just for these 4 fields or the whole form? OR whole platform?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2024 09:37 AM - edited 02-14-2024 09:56 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2024 01:09 AM
Don't think it will be possible on the label, using styles you can modify the look of the value of field.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2024 01:57 AM - edited 02-15-2024 01:58 AM
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