Past Events Images

Hello,
I’d like to tweak the images of past events, like changing the opacity, etc. but I cannot find which css element I should call.
Can someone help me with this ?
Thanks a lot.

2 Likes

Hi there, @Axel_Clamens :wave:

We have a solution that changes the opacity of all past event elements:

.eapp-events-calendar-layout-pastEvents{
  opacity: 0.7 !important;
}

Does it work for you, or you’d like only images to be faded out?

2 Likes

It’s great thank you! But If I could get the code for the images only it would be even better !

2 Likes

Sure, here is the code for images only:

.eapp-events-calendar-layout-pastEvents img {
  opacity: 0.5 !important;
}
2 Likes