Increasing the OOTB Font Size for Articles

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2022 03:04 PM
Hi Folks,
Is there a straightforward way to increase the OOTB font size from Verdana 8, to Verdana 10, but also increase all of the header sizes (h1,h2, etc...) a size too?
We recently had a developer attempt to adjust the OOTB font size for knowledge articles, but they also changed the default font family, and it utterly broke the header function for KB articles. I am hoping someone has figured out a straight forward way to simply "up" the font sizes on articles for everything from Paragraph to Headers.
Thanks in advance.
- Labels:
-
Knowledge Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2022 09:04 PM
Hi,
Please refer below thread might be helpful to you
Please mark my response as correct answer or helpful if applicable
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2022 06:04 AM
This is something we are looking for as well.
We have already set the default to Verdana 10 according to above link, but we need to be able to set all the presets as well, like Heading 1, 2, 3 and so on...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2025 12:02 AM
The headings are standard html tags <h1>, <h2> etc. There is no styling within the article itself.
The styling of the tags comes for the page where the kb article is displayed. Therefore you would have to adapt the styling on the particular pages (e.g. mobile could need another font size, than the service portal).
For Service Portal you could open the KB Article Page and add some custom css, e.g
h1 {
font-size: 15px;
}