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
Comment #1
rvarkonyi commentedThat'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.
Comment #2
adi_deg commentedthank you so much ,so i need to rewrite the code with ccs background image
Comment #3
rvarkonyi commentedI'll do a new release with the fix as soon as I can and let you know.
Comment #4
adi_deg commentedthank you so much . waiting for it ;)
Comment #5
toxiclung commentedsubscribe
Comment #6
skyl1ne commentedI 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.