|
I have recently tried to create a webpage on AceHTML with 12 individual months showing downwards, one after another
This is all appearing well, however when I add popup information boxes the first few (at the top of the page) work fine, however the subsequent ones showing further down the page on later months don't show when highlighted - I think they infact are showing, but at the very top of the page, out of sight (where the first enteries appear)
Any ideas on how the pop up box can be set to always appear where the curser is? The current, main text that I assume needs altering of some kind is as below
<td class="weekend">1 <div id="overDiv" style="position:absolute; visibility:hide; z-index:1;"></div>
<script language="JavaScript" src="overlib.js"></script>
<a href="javascript:void(0);" onMouseOver="drc('description text','Heading'); return true;" onMouseOut="nd(); return true;">Heading</a></td>
with future boxes coded up as below...
<a href="javascript:void(0);" onMouseOver="drc('description text','Heading'); return true;" onMouseOut="nd(); return true;">Heading</a>
Any ideas? Thanks!
|