Hi Frank, I updated the zip file with an updated css file.
I tested it on a fresh 1.3.8a and it seems to be good now.
let me know if it works for you.
Daniel
Printable View
After I override the option.php, everything works fine.
Thanks~
Works great thanks,
I just changed the css file so the prev and next images show without the need to hover.
Removed #lbPrevLink:hover and #lbNextLink:hover and moved the call to images into #lbPrevLink and #lbNextLink like so.....
#lbPrevLink {
left: 0;
background: transparent url(../images/zen_lightbox/prevlabel.gif) no-repeat 0 15%;
}
#lbNextLink {
right: 0;
background: transparent url(../images/zen_lightbox/nextlabel.gif) no-repeat 100% 15%;
}
Hey Daniel,
Good work on this update!
Does your update works together with Image Handler latest version? I see that original ZL was compatible with it. I noticed that both addons use the same overriden file "additional_images.php". So I guessthey have to be merged?
From what I can tell, the main changes in Zen LightBox to the additional_images.php file are mainly to work with Image Handler.
The code shows lines like this:
I just did a fresh install of 1.3.9h then installed IH2 (worked fine) then I installed Zen LightBox 1.6 (including additional_images.php) and everything seems to still be working just fine!PHP Code:
if (function_exists('handle_image')) {
$flag_has_large = true;
}
daniel