Results 1 to 7 of 7

Thread: Image Thumbnail Viewer Help

  1. #1
    Join Date
    May 2007
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Exclamation Image Thumbnail Viewer Help

    1) Script Title: Image Thumbnail Viewer

    2) http://dynamicdrive.com/dynamicindex4/thumbnail.htm

    3) If I click and close one thumbnail and then try to open another thumbnail, the image it's supposed to link to doesn't work.

  2. #2
    Join Date
    May 2007
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    This only happens on my website, not the example images on DD.

  3. #3
    Join Date
    May 2007
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Please post a reply. I desparately need help! >.<

  4. #4
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Please have some patience. This is a forum, not real-time chat. Four minutes is really not an adequate time to wait before bumping your posts.
    This only happens on my website, not the example images on DD.
    This means you've done something wrong when setting it up. We won't be able to help you unless you link to your page so we can see how.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  5. #5
    Join Date
    May 2007
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Sorry. I will try to wait longer next time. And here's the link to the problem:
    http://angelwingdreams.hanikamiya.net/fanart.php

  6. #6
    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

    What a mess! Anyways, I'm not going to go into all of the problems with the page except to say that it is invalid, has two opening body tags and looks markedly different in different browsers. It is up to you to fix all of that if you want, and you can get help for that, if you like, elsewhere in these forums.

    The main problem relating to your question is this bit of style in your style.css stylesheet file:

    Code:
    div,td,p
    {font-size:8pt; color:#65655F;
    font-family:arial,tahoma,verdana;text-align:justify;
    letter-spacing:1px;vertical-align:top;}
    It sets a number of things for all division (divs are used by the thumbnail viewer), td, and p elements on the page.

    Apparently that one style:

    Code:
    text-align:justify;
    Is ruining things for the viewer's pop up division.

    You can do this instead:

    Code:
    div,td,p
    {font-size:8pt; color:#65655F;
    font-family:arial,tahoma,verdana;
    letter-spacing:1px;vertical-align:top;}
    
    td,p
    {text-align:justify;}
    It will have minimal, if any impact on your current design, and will take care of the problem.
    - John
    ________________________

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

  7. #7
    Join Date
    May 2007
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks so much! :3 And I will get help with my coding problem. Thanks for the tip!

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
  •