Results 1 to 2 of 2

Thread: Image Thumbnail Viewer II

  1. #1
    Join Date
    Mar 2008
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Image Thumbnail Viewer II

    1) Script Title: Image Thumbnail Viewer II

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...thumbnail2.htm

    3) Describe problem: I cannot get the picture to come up when I move mouse over thumbnail. Here is my webpage with the script on it http://www.glorylandgospel.com/FP/dmayes.html. If I click on the small pictures it takes me to the larger image, but I would like this script to work just as it does at http://www.dynamicdrive.com/dynamici...thumbnail2.htm That is as the mouse is moved over the smaller images the large ones show up.

    Your help on this would be appreciated. If there is another script I should be using to accomplish what I am trying to do, that recommendation would also be apprecaited.

    SoSoHelp

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Your page is looking for the script here:

    Code:
    http://www.glorylandgospel.com/FP/thumbnailviewer2.js
    It's not there. It is here:

    Code:
    http://www.glorylandgospel.com/thumbnailviewer2.js
    So, in the head of your page, change this:

    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>
    to:

    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>
    There could still also be other problems.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •