To begin with, where you have:
Code:
<head>
<style type="text/css">
#dhtmltooltip{
position: absolute;
width: 250px;
border: 0px solid black;
padding: 2px;
background-color: white;
visibility: hidden;
z-index: 100;
/*Remove below line to remove shadow. Below line should always appear last within this CSS*/
filter: progid:DXImageTransform.Microsoft.Shadow(color=gray,direction=135);
}
</style>
</head>
<body>
Take out the extra stuff, make it just:
Code:
<style type="text/css">
#dhtmltooltip{
position: absolute;
width: 250px;
border: 0px solid black;
padding: 2px;
background-color: white;
visibility: hidden;
z-index: 100;
/*Remove below line to remove shadow. Below line should always appear last within this CSS*/
filter: progid:DXImageTransform.Microsoft.Shadow(color=gray,direction=135);
}
</style>
If that doesn't fix it, try adding this red declaration in so it looks like this:
Code:
<style type="text/css">
#dhtmltooltip{
text-align:left;
position: absolute;
width: 250px;
border: 0px solid black;
padding: 2px;
background-color: white;
visibility: hidden;
z-index: 100;
/*Remove below line to remove shadow. Below line should always appear last within this CSS*/
filter: progid:DXImageTransform.Microsoft.Shadow(color=gray,direction=135);
}
</style>
Bookmarks