JakeBloomfield
Member
Posted 2 months ago #
Hi :)
Firstly, thanks for the amazing plugin. It does make things much simpler!
I am having some issues with the lightbox. When I click on an image (in any browser/device), the lightbox gets clipped off by the header and menu elements of the page. Here is a link to a screenshot to explain what I mean:
http://img594.imageshack.us/img594/412/51973239.jpg
As you can see, the header and menu aren't 'dimmed' like the other elements of the page. It seems like it's taking presidence over the lightbox. Can anyone help?
Kind Regards,
Jake
http://wordpress.org/extend/plugins/gallery-plugin/
JakeBloomfield
Member
Posted 2 months ago #
Hi All,
Can anyone shed any light on this?
Cheers,
Jake
JakeBloomfield
Member
Posted 2 months ago #
Hi All,
Managed to fix it with some help from another forum (kudos to the guy who helped).
I have to change the z-index style for the #branding CSS rule.
From this:
#branding {
padding-bottom: 10px;
position: relative;
z-index: 9999;
background: transparent
}
To This:
#branding {
padding-bottom: 10px;
position: relative;
z-index: 1
background: transparent;
}
Now works like a charm