Bases: Card view: Change background color of picture

Bases; card view;

How to change background color of picture with transparent background?

My current CSS:

/* Change background for all images */
img {
    background-color: rgb(90, 90, 90); 
}

It’s broad, i.e., it affects all cards, but you could try something like this to start:

.bases-cards-cover {
    background-color: rgb(90, 90, 90); 
}
1 Like

It works! Thank you.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.