
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to change sheet title font family in Qlik sense Enterprise
Dear team,
Did anyone of you know how to change the font family of the sheet title ?
I have gone through some of the community posts and help site and found a way to update sheet title font color and image from app overview or through css.
Using JSON script we can control title back ground color and background gradiant color when the sheet Private or Approved or Published but i didn't find a way to update the font family of the sheet title.
Kindly help me if anyone is succeded doing this.
- Tags:
- qlik sense
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi, you can create custom theme or if it is one-time thing, you can try to change CSS with multi-kpi extensions approach (you'll find multiple threads with similar examples in this forum). I believe this should work:
.qvt-sheet {
font-family: Webdings;
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you very much @justISO
I have created custom theme and it worked !!
Now i am trying to reduce the font size but it's not changing the size. Below is the css I am using. Kindly help.
.qvt-sheet{
font-family: Droid Arabic Kufi;
font-size: 10px;
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
try other selector
.sheet-title-text{
font-family: Droid Arabic Kufi;
font-size: 10px;}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
