Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Jacob Dubail

    (@jacobdubail)

    Hi Ziassan,

    Any chance you could share a link to the site? It sounds like either a z-index issue or a javascript error.

    Thanks,
    Jacob

    Thread Starter Ziassan

    (@ziassan)

    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.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: AnythingSlider for WordPress] No mouse interaction’ is closed to new replies.