How to increase the size of a link
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2025 12:14 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2025 12:47 AM
Hi @Alon Grod
You can acheive that using <font> tag. PFB sample.
Client script:
var msg = '<p>Please click the following link: <a href="https://www.google.com"><font size="5">Google</font></a></p>';
g_form.addErrorMessage(msg);
Output:
Regards,
Siva
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2025 12:57 AM
you can use font tag and give size there as per script shared by @J Siva
Share your complete script here as well.
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2025 12:59 AM
Hi @Alon Grod
Modify the a tag directly like below
<a href="#" style="font-size: 20px;">This is a link</a>
Kindly mark my answer as helpful and accept solution if it helped you in anyway.