-5

I have a sticky header on my website and a Jquery Zooming effect on the products.

This two elements are in conflict actually, the zooming effect goes over the sticky header.

I tried to reduce the Z-index of the Zooming effect but nothing.

Here the link : http://www.directportes.fr/luxe-1

I used a script to make the sticky element :

https://gist.github.com/johnnyopao/896e042fe7daac49d119

I used another script for the zooming effect :

<script>
$(function() {
  $('.zoomElevate').elevateZoom({
    zoomType    : "lens", lensShape : "round", lensSize : 200
  });
});
</script>
fratelli724
  • 13
  • 1
  • 4

1 Answers1

0

I checked it and i saw that you are trying to use z-index with position fixed. Check this stack overflow question to understand more for that and how to fix

Community
  • 1
  • 1
Edison Biba
  • 4,384
  • 3
  • 17
  • 33
  • Thanks for help, I'll check this now – fratelli724 Aug 19 '16 at 15:28
  • It's ok. It would be great if you would just get your header and an image code and create a jsfiddle or a code snippet here so we could try something on it :) – Edison Biba Aug 19 '16 at 15:30
  • After lot of research, it's seem there is conflict between this two property. Actually, I've changed the design. Thanks for help, I close the question. – fratelli724 Aug 23 '16 at 16:49