Change the font of VA welcome message
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-08-2025 03:33 AM
Hello Community,
Greetings !
How can we change some font of VA welcome message to italic and some to different font.
Please guide.
Thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-08-2025 03:50 AM
are you referring to this one? If yes then it comes from UI messages and there we can't give any HTML formattting
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
‎01-08-2025 03:51 AM
Hello @Drishti
Looking into the branding of virtual agent we can set separate font for chat header and chat body only.
Hope this helps!
"If you found my answer helpful, please like and mark it as an "accepted solution". It helps future readers to locate the solution easily and supports the community!"
Thank You
Juhi Poddar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-08-2025 04:38 AM
To change the font of the ServiceNow Virtual Agent (VA) welcome message to italic and use a different font, you can use custom CSS. Here’s a step-by-step guide:
Access the Virtual Agent Designer:
- Navigate to Virtual Agent Designer in ServiceNow.
Locate the Welcome Message:
- Find the welcome message you want to customize. This is usually part of the Virtual Agent topic or the greeting message.
Add Custom CSS:
- You can add custom CSS to style the welcome message. Here’s an example of how to do it:
<style> .va-welcome-message { font-style: italic; /* Makes the text italic */ font-family: 'YourCustomFont', sans-serif; /* Changes the font */ } </style>
Apply the CSS:
- Insert the CSS into the appropriate place in your Virtual Agent configuration. This might be in the HTML template or a custom widget if you are using one.
Example Implementation:
- If you are using a custom widget, you can include the CSS directly in the widget’s HTML. Here’s an example:
<div class="va-welcome-message"> Welcome to our Virtual Agent! </div> <style> .va-welcome-message { font-style: italic; font-family: 'YourCustomFont', sans-serif; }</style>
- Testing:
- Save your changes and test the Virtual Agent to ensure the welcome message appears as expected with the new styles.
This should help you customize the welcome message in the Virtual Agent to have italic text and a different font.
=============================
If you find my response useful, like and submit as helpful.
Best,
PC
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-08-2025 08:28 PM
Can you share whether you were able to add the style?
please share your results
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader