Tips and Tricks HQ Support Portal › Forums › WP Photo Seller › Photoseller – Galleries – Zoom window is hidden behind the watermarked image
- This topic has 11 replies, 3 voices, and was last updated 10 years, 7 months ago by Peter.
-
AuthorPosts
-
April 24, 2014 at 9:02 pm #10700ronnytertnesMember
Hi, zoom on mouseover hides the zoom window in the back.
Unable to find a solution for this problem, see gallery here:
[http://ronnytertnes.no/photogallery/]
(sorry it’s in Norwegian, but I am sure you see the problem
I guess the photocrati theme or something messed up the CSS… I even deactivated and deleted and reinstalled, but no difference…
April 25, 2014 at 5:52 am #62455adminKeymasterWhen I click on an image to go to the photo details page, it gives me a 404 page error. Have you deleted the photo details page from your installation? The plugins creates that page when you installed it. Go to the trash tab of your WordPress pages and see if you have a page named “Photo Details”
April 25, 2014 at 7:44 am #62456ronnytertnesMemberSorry, forgot I just set that page to “draft” to get off my gallery meny drop down list… Please have a try now…
April 26, 2014 at 8:45 pm #62457ronnytertnesMemberok, I just switched off the photo details with zoom page and use the lightbox instead, that way my pot file translation works also since there was some buttons and text that refused to be translated …
Still puzzled as to why the zoom lense window ended up behind the photos though…
April 27, 2014 at 12:27 am #62458PeterMemberHi @ronnytertnes,
Could you please create a test gallery which uses the zoom feature and provide the link so I can take a look at it?
April 27, 2014 at 12:37 am #62459ronnytertnesMemberSure:
[http://ronnytertnes.no/photogallery/gallery6/]
April 27, 2014 at 1:37 am #62460PeterMemberThe cause of the problem was because your theme’s CSS code is setting z-index in the main page content div. This was in turn affecting the zoom popup div element because it was creating a “stacking context”.
The CSS spec has more info about what a “stacking context” is:
http://www.w3.org/TR/CSS2/zindex.html
This is easily fixed by doing the following:
1) Go and grab the following plugin:
http://www.tipsandtricks-hq.com/wordpress-custom-css-plugin-6413
2) Then add the following CSS code in the settings of the above plugin:
#content{
z-index: -1;
}April 27, 2014 at 11:28 am #62461ronnytertnesMemberThank you
April 27, 2014 at 11:34 am #62462ronnytertnesMemberThanks, it works on the image itself but it makes the entire gallery un-clickable, can’t click on images og the add to cart button… So I had to remove the
#content{
z-index: -1;
}
coincidence ?? I added and removed it several times and every time it was there the galleries became unclickable…
Seems to work in IE but not Chrome …
April 28, 2014 at 1:01 am #62463PeterMemberI initially had another solution using “opacity” which was probably better but I deleted it because IE seems to be the odd one which doesn’t always follow the CSS specs.
Ok, please delete the previous CSS I gave you and try this and let me know if that works:
div:first-child{
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
-moz-transform: translateZ(0);
}April 28, 2014 at 1:10 pm #62464ronnytertnesMemberThanks it works in chrome but in IE the zoomwindow is still behind the image.. Also the dropdown menus became unclickable in chrome..
April 29, 2014 at 1:02 am #62465PeterMemberHi,
I think that the problem lies in the following line of CSS code in you theme’s style.css file on line 394:
#content { /* This sets the width of the page content area */
position : relative;
margin : 0;
width : 100%;
z-index : 1; <======= this is line is causing the issue
}The code I have given you thus far has tried to counter-act the above z-index setting but obviously there isn’t a one-size-fits-all solution due to different browser behaviours.
You can try another thing which is to save a copy of the original style.css file of your theme and then delete the above line.
The only problem with this is that you’ll have to remember to do it again if you ever update the theme’s version.
Another thing you can do is to change themes and I’m very confident that it will work with no problems because I don’t know of many themes which set a z-index value in a main content div like your current theme is doing.
-
AuthorPosts
- You must be logged in to reply to this topic.