Two possible problems. But first please restore the on page credit for the Ultimate Fade-In slideshow:
Your page is in violation of Dynamic Drive's
usage terms, which, among other things, state that the script credit must appear in the source code of the
page(s) using the script. Please reinstate the notice first.
OK, on to the problems with the viewer. It could be one or both of these:
Your image filenames and their href values contain non-standard characters in the UTF-8 content type, change your content type meta tag from:
Code:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
to:
Code:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
But I think your server is overriding that and presenting the code in iso-8859-1 or similar anyway. The real problem appears to be (highlighted):
Code:
<script type="text/javascript" src="thumbnailviewer2.js" defer="defer">
/***********************************************
* Image Thumbnail Viewer II script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Visit http://www.dynamicDrive.com for hundreds of DHTML scripts
* This notice must stay intact for legal use
***********************************************/
</script>
The defer attribute is a great shortcut in IE, but when there are other scripts on the page it sometimes causes problems, as it certainly appears to be here. Just get rid of it:
Code:
<script type="text/javascript" src="thumbnailviewer2.js">
/***********************************************
* Image Thumbnail Viewer II script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Visit http://www.dynamicDrive.com for hundreds of DHTML scripts
* This notice must stay intact for legal use
***********************************************/
</script>
Make these two changes (and please reinstate the credit to the other script as mentioned) and you should be fine (tested here in IE 7).
Bookmarks