PVII Image Effects Magic
I am seeking a zoom in tweak so that the image zoomed in, pops above the other images instead of under the other images.
Possible?
Page in question:
https://smart-repairs-pro.com/photos.php
PVII Image Effects Magic
I am seeking a zoom in tweak so that the image zoomed in, pops above the other images instead of under the other images.
Possible?
Page in question:
https://smart-repairs-pro.com/photos.php
Yes, it's possible. We'll need to have each IFX image be position: relative so that it will obey z-index settings and then add a style rule to set a very hoigh z-index on the active image:
Add these two style rules to your IFX style sheet:
img.p7IFX {
position: relative;
}
img.ifx-on {
z-index: 999;
}
It active image zoom will now render above other images.
Perfect! Thank you!
You're very welcome!
You must log in to post.