Results 1 to 6 of 6

Thread: it's perfect, except for.....

  1. #1
    Join Date
    Mar 2006
    Posts
    75
    Thanks
    17
    Thanked 0 Times in 0 Posts

    Angry it's perfect, except for.....

    thumbnail viewer II

    From the Home page, click on "Gallery One" -- after you have clicked on the before/after pictures, the "Home" button is disabled -- if you "refresh" it it works again, as long as you don't go near one of the photos -- happens in IE, Firefox & Opera -- what can i do to fix this?

    www.makeovermagic.org

    Thanks,

    Marsha

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Warning: Please include a link to the DD script in question in your post. See this thread for the proper posting format when asking a question.

    The problem is due to the way your "Home" button is created- inside the TD that the script uses to load the images:

    Code:
    <td id="dynloadarea" width="756" height="560" style="text-align:center;vertical-align:middle;" bordercolor="#111111">
     <span style="position: absolute; left: 751; top: 413"><a href="index.htm">
     <img border="0" src="blankbutton.gif" width="47" height="104"></a></span><tr>
    </td>
    In other words, the TD called "dynloadarea". Once the script loads an image, it overwrites everything in that TD with the image's HTML, including the span that contains your link. To fix this, you'll need to move the Home link to outside this TD.

  3. #3
    Join Date
    Mar 2006
    Posts
    75
    Thanks
    17
    Thanked 0 Times in 0 Posts

    Default

    http://www.dynamicdrive.com/dynamici...thumbnail2.htm
    thumbnail viewer script II
    (sorry about that)

    <img border="0" src="blankbutton.gif" width="47" height="104">

    where exactly do i move it to?

    www.makeovermagic.org
    Last edited by momonline; 04-30-2006 at 11:56 AM.

  4. #4
    Join Date
    Mar 2006
    Posts
    75
    Thanks
    17
    Thanked 0 Times in 0 Posts

    Default

    http://www.dynamicdrive.com/dynamici...thumbnail2.htm
    thumbnail viewer script II

    "gallery one"

    <img border="0" src="blankbutton.gif" width="47" height="104">

    i have tried moving the above around, but it only works where it was originally positioned -- with the exception of the info in my first post here (that it disables itself...)

    do i have to add something to it?

    www.makeovermagic.org

  5. #5
    Join Date
    Mar 2006
    Posts
    75
    Thanks
    17
    Thanked 0 Times in 0 Posts

    Default

    i got the buttons to work -- albeit, probably not the correct way -- but they work at least.

  6. #6
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    As long as the portions of your HTML you don't want changed, such as the buttons, is *not* inside:

    Code:
    <td id="dynloadarea">
    </td>
    Everything else is up to you.

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
  •