Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am just learning to create a theme in Qlik Sense.
My customer doesn't like the zeros with slashes. What is the best way to get rid of these? I have yet to make any font changes work in my theme.
If anyone could point me in the right direction I would appreciate it.
My understanding is that the upcoming release of Qlik Sense for Windows will use the Source Sans Pro font that Qlik Sense SaaS uses. Nevertheless, to add that font to a custom theme, add this to the CSS file:
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap'); Qlik Support.qv-object :not([font-family]) { font-family: QlikView Sans,sans-serif; } .qv-object * { font-family: 'Source Sans Pro', sans-serif!important; }
That second line comes from this Qlik Support article about overriding the default font with a custom theme.