Hi, thanks for your reply.
The site being in construction it’s only possible for admins to view it, sadly.
But hopefully I found the wront point… I was using a different browser than my usual one (which is Opera) for the tests, and it was Internet Explorer (eh, a lot of people use it so I always test on it to be sure it works for everyone).
So indeed it was a z-index error, the fix being
`
$(function() {
var zIndexNumber = 1000;
$(‘div’).each(function() {
$(this).css(‘zIndex’, zIndexNumber);
zIndexNumber -= 10;
});
});
Now it works.