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.
Bookmarks