Hello Marie,
I have logged in and check your page. Even if we wrap the elements with a DIV, it is still behaving the same. I’ve look around the forum and this old thread, (Column hover effect) seems like the same issue. We can refer to this old thread and use a custom CSS instead. In the old thread, it is using .team .x-column:hover
, in your case, you can use an inline element CSS added to the section instead.
$el .x-col:hover {
z-index: 5;
}
Adding this in the section should make sure that the z-index
of the hovered column will be on top of the other columns.
Be advised that this is just an example code. You will have to implement and make sure to maintain this code especially after every WP, theme or plugin updates.
Best Regards.