Results 1 to 4 of 4

Thread: Help with Image Thumbnail Viewer II

  1. #1
    Join Date
    Jun 2005
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Exclamation Help with Image Thumbnail Viewer II

    I am trying to figure out why I am only getting the text links. If you mouse over the links the pictures show up.
    I want to show up as the thumbnails instead.
    How do you close them?
    Link to script:
    http://www.dynamicdrive.com/dynamici...thumbnail2.htm
    Link to the page I am working on:
    http://ourchildren.angelcities.com/test%20.html#

  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

    For one thing you have a syntax error:
    Code:
    <a href="#" onMouseover="modifyimage(dynloadarea', 0)">image 1 (onmouseover)</a><br>
    should be:
    Code:
    <a href="#" onMouseover="modifyimage('dynloadarea', 0)">image 1 (onmouseover)</a><br>
    Also, you would be better off changing this:
    Code:
    <a href="#" onClick="return modifyimage('dynloadarea2', 2)">image 3 (onclick)</a><p>
    to this:
    Code:
    <a href="#" onClick="return modifyimage('dynloadarea', 2)">image 3 (onclick)</a><p>
    If you do all that, you don't need to close them as one will replace the other.

    I don't see any attempt to use thumbnails on your page but, just substituting an image tag of the thumbnail for the text will work:
    Code:
    <a href="#" onClick="return modifyimage('dynloadarea', 2)"><img src="somethumb.jpg"></a><p>
    - John
    ________________________

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

  3. #3
    Join Date
    Jun 2005
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thank you John
    I will be working on this tomorrow.
    I will let you know if it works.
    I hope so
    The last one you helped me with worked great

  4. #4
    Join Date
    Jun 2005
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Talking

    Thank you so much John
    It worked. It makes sense needing a thumb nail to make it appear with a thumbnail.
    Now I can work on making thumb nails for all the pictures and getting them sorted.

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
  •