Can you change the font of the Short Description in the Knowledgebase?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2024 02:50 PM
I am trying to make our KB articles look they way our L&D team needs and so need to make the title a font called Archer.
I was able to do it in the articles body playing with the HTML (as per below) but would really like to do it on the short description otherwise we are going to be putting the title twice (Once for practical purposes and once for fancy purposes)
Is there a way to do this?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2024 08:11 PM
Hi @Blair Loveday ,
Please Refer to this thread : https://www.servicenow.com/community/knowledge-managers/how-do-i-format-the-knowledge-article-title-...

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2024 08:47 PM
Hi @Blair Loveday you can add the below css code on the instance widget css
//for short description font
.kb-title-header {
font-size: 3rem;
font-family: Archer;
}
steps to do
1. Ensure your in knowledge management service portal scope
2. ctrl right click on article widget--> click on instance in page editor
3. Add the css code here.
Harish