Martin Verkerk Posted June 28, 2009 Posted June 28, 2009 Hello, I have bring the update from 4.3.1 to 4.3.3. Afther uploaded the files i make the changes in skins\Skin name\styleTemplates\global\index.tpl When i view images witht the Lightbox then the Loading.gif dont come and the button (Close.gif) is dont placed under the lightbox screen in IE7 and IE8. Then comes a red cross from no images found. In Firefox, there comes nothing. It's happends by the Cubecart skins but also bij 3the skins. I hope that any one have a solution. For this moment i have the old js\lightbox.js placed back and i have the change in index.tpl roled back. Now its working. By one client, comes not a red cross but de prev and next wild not be viewed. Only fromout the middele to right or links comes the browser hand. Its likes someting is wrong in js\lightbox.js from version 4.3.3 Thnx Martin Quote
onebrowncow Posted July 1, 2009 Posted July 1, 2009 Had some problem, changed file js/lightbox.js from this LightboxOptions = Object.extend({ fileLoadingImage: 'images/lightbox/loading.gif', fileBottomNavCloseImage: 'images/lightbox/closelabel.gif', to this LightboxOptions = Object.extend({ fileLoadingImage: '/images/lightbox/loading.gif', fileBottomNavCloseImage: '/images/lightbox/closelabel.gif', Quote
Martin Verkerk Posted July 1, 2009 Author Posted July 1, 2009 Had some problem, changed file js/lightbox.js from this LightboxOptions = Object.extend({ fileLoadingImage: 'images/lightbox/loading.gif', fileBottomNavCloseImage: 'images/lightbox/closelabel.gif', to this LightboxOptions = Object.extend({ fileLoadingImage: '/images/lightbox/loading.gif', fileBottomNavCloseImage: '/images/lightbox/closelabel.gif', Thanks i will try Quote
Martin Verkerk Posted July 2, 2009 Author Posted July 2, 2009 Had some problem, changed file js/lightbox.js from this LightboxOptions = Object.extend({ fileLoadingImage: 'images/lightbox/loading.gif', fileBottomNavCloseImage: 'images/lightbox/closelabel.gif', to this LightboxOptions = Object.extend({ fileLoadingImage: '/images/lightbox/loading.gif', fileBottomNavCloseImage: '/images/lightbox/closelabel.gif', Thanks i will try When i make the change, then the red crosses are gone, but for now dident come the Next and Prev button. Only the browser hand Quote
onebrowncow Posted July 3, 2009 Posted July 3, 2009 I did not make any other code changes and after this change all worked fine for me including next / prev. May be worth checking the lightbox image folder has the correct file attribute set , chmod 755 Quote
Martin Verkerk Posted July 4, 2009 Author Posted July 4, 2009 I did not make any other code changes and after this change all worked fine for me including next / prev. May be worth checking the lightbox image folder has the correct file attribute set , chmod 755 Yes the chmod is 755 on the images\lightbox directory. I'l try tomorow early in the morning a second time to make the change. Quote
Guest M i k e Posted July 20, 2009 Posted July 20, 2009 I am having same issue, added the "/" before the images as suggested, so now I see the close "X" image, but still the next and prev images do not show up. Had some problem, changed file js/lightbox.js from this LightboxOptions = Object.extend({ fileLoadingImage: 'images/lightbox/loading.gif', fileBottomNavCloseImage: 'images/lightbox/closelabel.gif', to this LightboxOptions = Object.extend({ fileLoadingImage: '/images/lightbox/loading.gif', fileBottomNavCloseImage: '/images/lightbox/closelabel.gif', Thanks i will try When i make the change, then the red crosses are gone, but for now dident come the Next and Prev button. Only the browser hand Quote
Guest M i k e Posted July 20, 2009 Posted July 20, 2009 After further investigation I found lightbox.css pointing to "prevlabel.gif" and "nextlabel.gif" which were not in the images/lightbox folder. #prevLink:hover, #prevLink:visited:hover { background: url(../../../images/lightbox/prevlabel.gif) left 15% no-repeat; } #nextLink:hover, #nextLink:visited:hover { background: url(../../../images/lightbox/nextlabel.gif) right 15% no-repeat; } I changed the lines to read: #prevLink:hover, #prevLink:visited:hover { background: url(/images/lightbox/prev.gif) left 15% no-repeat; } #nextLink:hover, #nextLink:visited:hover { background: url(/images/lightbox/next.gif) right 15% no-repeat; } and now it seems to be working... I am having same issue, added the "/" before the images as suggested, so now I see the close "X" image, but still the next and prev images do not show up. Had some problem, changed file js/lightbox.js from this LightboxOptions = Object.extend({ fileLoadingImage: 'images/lightbox/loading.gif', fileBottomNavCloseImage: 'images/lightbox/closelabel.gif', to this LightboxOptions = Object.extend({ fileLoadingImage: '/images/lightbox/loading.gif', fileBottomNavCloseImage: '/images/lightbox/closelabel.gif', Thanks i will try When i make the change, then the red crosses are gone, but for now dident come the Next and Prev button. Only the browser hand Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.