Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Qlik Sense sheet background colour..

Hi,

I want to change sheet background colour in sense on a specific app.

Is there any way to do this. I tried to do some changes in sense themes but i couldn't get it.

10 Replies
HarshaPotnuru
Partner - Contributor
Partner - Contributor

Consider Multi KPI > Appearence > styles > CSS

Paste the following codes as per the metric,

#grid-wrap.sheet-grid, #grid-wrap.sheet-list {
flex: 1;
position: relative;
background: black;
}

Background as image:

#grid-wrap.sheet-grid, #grid-wrap.sheet-list {
flex: 1;
position: relative;
background-image: url(copy the image address from google and paste it here);
background-repeat:no-repeat;
background-size:100% 100%;
}