Changing the color of the space behind the Kanban cards

Please add this code to page settings → Custom code → Footer area. Make sure to replace the BLOCKID with your block name, YOUR_COLOR with the color code, save and publish.

<style>
#BLOCKID .card-ul-element{
	background: YOUR_COLOR;
}
</style>
3 Likes

Thanks! I added this to change the background for the bottom part of the background.

<style>
#BLOCKID .card-ul-element{
	background: YOUR_COLOR;
}
#BLOCKID .kanban-column{
	background: YOUR_COLOR;
}
</style>