Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
sudheersakamuri
Partner - Contributor III

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.

Labels (1)
1 Solution

Accepted Solutions
sudheersakamuri
Partner - Contributor III
Author

It's Working now !!

 

Thank you very much for the help @justISO 

View solution in original post

4 Replies
justISO
Specialist

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;
}

sudheersakamuri
Partner - Contributor III
Author

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;

}

justISO
Specialist

try other selector

.sheet-title-text{
font-family: Droid Arabic Kufi;
font-size: 10px;}

sudheersakamuri
Partner - Contributor III
Author

It's Working now !!

 

Thank you very much for the help @justISO