2
Upon further investigation, it was working. But. The problem is its positioning in IE is at the top of the screen where I couldn't see it. In FireFox it is right next to the block, slightly down and to the right. Bleepin IE! Any ideas how to solve the IE positioning problem?
Here is the template info to:
Quote:
<{if $block.hits_birthdays == 0}>
<center>
<br />
<{$block.lang_birthday_none}><br />
<br />
</center>
<{else}>
<script type="text/javascript" src="<{$xoops_url}>/include/popup.js"></script>
<center>
<font size="2"><{$block.lang_birthday_pre}></font><br />
<font size="4"><b><{$block.hits_birthdays}></b></font><br />
<font size="2"><{$block.lang_birthday_post}></font>
<br />
<img src="<{$xoops_url}>/uploads/bday.gif">
</center>
<table width="100%">
<{foreach item=result from=$block.results}>
<tr align="center" class="<{cycle values='odd,even'}>">
<td>
<div onmouseover="ShowContent('BirthdayPop<{$result.uid}>'); return true;"
onmouseout= "HideContent('BirthdayPop<{$result.uid}>'); return true;">
<a href ="<{$xoops_url}>/userinfo.php?uid=<{$result.uid}>"><{$result.uname}></a>
</div>
</td>
</tr>
<{/foreach}>
</table>
<{foreach item=result from=$block.results}>
<div id="BirthdayPop<{$result.uid}>" style="display:none; position:absolute; border-style: solid; padding: 5px; background-color: <{if $result.user_gender == 1}>#dfe2ff<{else}>#ffefef<{/if}>;">
<div width="300" style="background-color: white">
<table style="width:300px">
<tr><th colspan="2" align="center"><b><{$block.lang_birthday_header}> <{$result.uname}></b></th></tr>
<tr>
<td style="width:80px;" style="height:100%">
<div style="width:80px; height:80px;"><img style="text-align:center; vertical-align:middle;" src="<{$xoops_url}>/uploads/<{$result.user_avatar}>"></div>
</td>
<td style="text-align:center; vertical-align:middle;">
<table width="220">
<tr height="33%" class="odd"><td><{$block.lang_name}></td><td><{$result.name}></td></tr>
<tr height="33%" class="even"><td><{$block.lang_birthday}></td><td>
<{if $block.dateformat == 0}>
<{$result.user_birth}>
<{else}>
<{$result.user_birth|date_format:"%d-%m-%Y"}>
<{/if}>
</td></tr>
<tr height="33%" class="odd"><td><{$block.lang_age}></td><td><{$result.user_age}></td></tr>
</table>
</td>
</tr>
</table>
</div>
</div>
<{/foreach}>
<br />
<{/if}>