Thanks for the link! Very helpful for debugging. I understand completely about your hesitancy, and you're welcome to remove the link after you've gotten the help you need.
The issue on the page appears to be because of the code to include the Image w/ description tooltip v2.0 is currently placed within your <style></style> tags. This makes the browser not handle it correctly.
The current layout of your page is like this
HTML Code:
<style type="text/css">
ALL OF YOUR CSS IS HERE
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="ddimgtooltip.css" />
<script type="text/javascript" src="ddimgtooltip.js">
/***********************************************
* Image w/ description tooltip v2.0- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Please keep this notice intact
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
***********************************************/
</script>
</style>
when it should be outside the tags like this
HTML Code:
<style type="text/css">
ALL OF YOUR CSS IS HERE
</style>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="ddimgtooltip.css" />
<script type="text/javascript" src="ddimgtooltip.js">
/***********************************************
* Image w/ description tooltip v2.0- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Please keep this notice intact
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
***********************************************/
</script>
Hope that makes sense! I've tested after making that change and it seems to resolve the issue. Let me know if that works for you.
Bookmarks