Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Str3s52020
Contributor II
Contributor II

Change background color of first column in pivot table

Hi

I want to change the background color of the first column in my pivot table with CSS (the same color as in the header).

Str3s52020_0-1627978365724.png

Is it possible to do it with CSS?  
Thanks in advance! 😀

1 Solution

Accepted Solutions
Str3s52020
Contributor II
Contributor II
Author

I solved the problem. Below you can find a CSS code:

.qv-pt .cell:first-child{
background-color: #00414B;
color: white;
font-weight: bold;
}

View solution in original post

1 Reply
Str3s52020
Contributor II
Contributor II
Author

I solved the problem. Below you can find a CSS code:

.qv-pt .cell:first-child{
background-color: #00414B;
color: white;
font-weight: bold;
}