That would depend upon how the slide show is doing that. Most likely it is via a higher z-index and/or native stacking order than the tip. If it is either of those, you can just raise the z-index of the tip to compensate:
Code:
<style type="text/css">
#dhtmltooltip{
position: absolute;
width: 150px;
border: 2px solid black;
padding: 2px;
background-color: lightyellow;
visibility: hidden;
z-index: 10000;
/*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>
But it might be something else, or something in addition to the above required to change this. If you want more help:
Please post a link to the page on your site that contains the problematic code so we can check it out.
Bookmarks