Pictures Displaying / Not Displaying

R

realtyonegroup

On a website I just posted, I have a slideshow in the _borders/top.htm page.
On pages not located in subfolders the slideshow appears, but doesn't on
pages not embedded in subfolders. For instance:

http://www.contactrochester.org/directors.htm - pictures appear
http://www.contactrochester.org/storefronts/storefronts.htm - pictures don't
appear

All the images in the slideshow are absolute links (ex.
http://www.contactrochester.org/images/borders/banner1.png)

Any reason why the pictures don't appear on the pages stored in subfolders?
Any help would be appreciated. Thank you for your time in advance!
 
S

Stefan B Rusynko

You are not using absolute paths
In both pages
http://www.contactrochester.org/storefronts/storefront.htm and
http://www.contactrochester.org/
In your script you are using relative paths
fadeimages[0]=["images/buttons/banner.png", "", ""] //plain image syntax
fadeimages[1]=["images/buttons/banner1.png", "", ""] //
fadeimages[2]=["images/buttons/banner2.png", "", ""] //
fadeimages[3]=["images/buttons/banner3.png", "", ""] //

Use Root relative paths in all files
fadeimages[0]=["/images/buttons/banner.png", "", ""] //plain image syntax
fadeimages[1]=["/images/buttons/banner1.png", "", ""] //
fadeimages[2]=["/images/buttons/banner2.png", "", ""] //
fadeimages[3]=["/images/buttons/banner3.png", "", ""] //

Or Absolute full URL paths

PS
your link to you home page in you nav is invalid
it is http://www.contactrochester.org/_borders/index.htm
instead of http://www.contactrochester.org/index.htm
change _borders/index.htm to /index.htm


--




| On a website I just posted, I have a slideshow in the _borders/top.htm page.
| On pages not located in subfolders the slideshow appears, but doesn't on
| pages not embedded in subfolders. For instance:
|
| http://www.contactrochester.org/directors.htm - pictures appear
| http://www.contactrochester.org/storefronts/storefronts.htm - pictures don't
| appear
|
| All the images in the slideshow are absolute links (ex.
| http://www.contactrochester.org/images/borders/banner1.png)
|
| Any reason why the pictures don't appear on the pages stored in subfolders?
| Any help would be appreciated. Thank you for your time in advance!
 
R

realtyonegroup

Thank you SO MUCH for the help! The root relative paths seemed to work best.
Sorry for the duplicate post below. I made the first post early in the day
and didn't see it appear after several hours so I posted again thinking the
first one didn't register. Anyway, thanks again!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top