Jump to content

Afther update 4.3.3 no Close.gif in lightbox?


Martin Verkerk

Recommended Posts

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

Link to comment
Share on other sites

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',

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

  • 3 weeks later...
Guest M i k e

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

Link to comment
Share on other sites

Guest M i k e

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

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...