That's sort of the right idea Beverleyh, but the wrong path, at least for the slideshow images.
There could also be other problems, but the images:
Code:
["../img/slides/aggregate.jpg", "", "", "", ""],
["../img/slides/welding.jpg", "", "", "",""],
["../img/slides/dozer.jpg", "", "", "", ""]
are all 404 Not Found. The correct paths are:
Code:
["img/slides/aggregate.jpg", "", "", "", ""],
["img/slides/welding.jpg", "", "", "",""],
["img/slides/dozer.jpg", "", "", "", ""]
It can be confusing. Using the relative path in an external script like that, the paths are relative to the page that the images are to appear on, not to the script. When in doubt, one may always use the absolute path:
Code:
["http://www.lillyconstructioninc.com/preview/img/slides/aggregate.jpg", "", "", "", ""],
["http://www.lillyconstructioninc.com/preview/img/slides/welding.jpg", "", "", "",""],
["http://www.lillyconstructioninc.com/preview/img/slides/dozer.jpg", "", "", "", ""]
Bookmarks