The timeline widget does not allow you to put a custom background, just the ones in the theme settings. Besides, if you set it with CSS using the ID of the container, only works for a limited time because for some reason the ID of the DOM elements change after some time, it’s really anoying, please fix that.
1 Like
Hi there, @Julien_Perez_Garcia ![]()
If I got it right, you’d like to have an option to change the background color of the event cards. I agree that it would be great to have this option in the settings and we’ll try to consider this in the future.
In the meantime, I see that you’ve applied a correct CSS code with the static class, which shouldn’t change from time to time:
.es-event-card-container {
background: linear-gradient(0deg, rgba(78, 65, 27, 1) 0%, rgba(71, 60, 22, 1) 0%, rgba(66, 55, 20, 1) 7%, rgba(48, 40, 14, 1) 17%, rgba(44, 37, 13, 1) 25%, rgba(38, 31, 11, 1) 35%, rgba(34, 28, 10, 1) 44%, rgba(14, 11, 4, 1) 65%, rgba(0, 0, 0, 1) 86%);
}
1 Like