hello, i new with drupal , i'm just the owner of the site and not the coder. the coder took the money and don't want to talk to me any more . i found an error in the reports ..with page not found on loader.gif . the code is ok , the loader.gif is in the place . the users don't see the error only in the admin appear. here is the page http://inlume.ro/spania/loader.gif . could you please tell me why this error appear?

Comments

rvarkonyi’s picture

That's a design issue by the gallery's original developer. Instead of using a background image via CSS the gallery is using an img tag with a hardcoded URL which doesn't work in this scenario. That's why the page not found happens.

adi_deg’s picture

thank you so much ,so i need to rewrite the code with ccs background image

rvarkonyi’s picture

I'll do a new release with the fix as soon as I can and let you know.

adi_deg’s picture

thank you so much . waiting for it ;)

toxiclung’s picture

subscribe

skyl1ne’s picture

I found adding this to the ad_gallery.css will activate the loader.gif:

img {
background-color: #FFFFFF;
background-image: url(loader.gif);
background-repeat: no-repeat;
background-position: center center;
}

But how do you disable the non-working default loader to stop the IE image not found icon (red x) from overlaying it?

Thank you.