From the IE error console:
SCRIPT1023: Expected hexadecimal digit
fadeslideshow.js, line 11 character 72
It's talking about this line:
Code:
controls: [['C:\Users\Matus\Documents\Praca\webstranka\osobny_web\js\x.png',7,7], ['C:\Users\Matus\Documents\Praca\webstranka\osobny_web\js\restore.png',10,11], ['C:\Users\Matus\Documents\Praca\webstranka\osobny_web\js\loading.gif',54,55]], //full URL and dimensions of close, restore, and loading images
See those paths? They're local paths. The \ slashes are seen as escapes. \x means a hex code should follow.
Anyways, upload those images to the server if you haven't already. Put them in the same folder as your page and restore the default line to the script:
Code:
controls: [['x.png',7,7], ['restore.png',10,11], ['loading.gif',54,55]], //full URL and dimensions of close, restore, and loading images
Bookmarks