I am making a website where one of the pages uses a JQuery thumbnail scroller script and a lightbox script to view the thumbnail in a larger image. The site works fine in Chrome and IE9, but in Firefox 12.0 and Opera 12.01 the images do not load when viewing on the internet, but everything is perfect when I view the pages locally on my machine running IIS.
Here is the Website
If anyone could give me any insight into why the images do not load I would be grateful as I have no idea what is going on with these browsers.
Thank you.
Change your image Path from
game-images\1\1-gp-small.pngtogame-images/1/1-gp-small.pngWhile your local IIS is a Windows based system you can use the backslash (
\) but your Online Machine is a Apache WebServer which is UNIX based. Unix needs a slash (/) as path separator.You should have similar development environments (for local and live) to preserve mistakes like this.