syrus.xl |
10-30-2006 12:59 AM |
Quote:
Originally Posted by Draygonia
Yah, but I removed Calendar and FAQ to make room for the other buttons because it would stretch the page.
Code:
<td width="70" height="22" align="left" valign="top"><a href="usercp.php?s=$session[sessionhash]"><img src="$stylevar[imgdir_misc]/tren_z_header_cp.gif" width="70" height="22" alt="" border="0" /></a></td>
|
Well, it looks like the old "vbmenu_control" td tag would cause problems. So, try this, which I've removed the td tag. It's using a straight forward image link, apart from the js, which shouldn't affect the link in anyway.
Code:
<!?Mp3 Player Launch -->
<td width="70" height="22" align="left" valign="top">
<if condition="$show['member']">
<a href="javascript:NewWindow=window.open('mp3playerindex.php?do=viewmp3playerpopup','newWin','width=500,height=500,left=0,top=0, toolbar=No,location=No,scrollbars=1,status=No,resizable=No,fullscreen=No');
NewWindow.focus(); void(0);"><img src="$stylevar[imgdir_misc]/tren_z_header_vbplayer.gif" width="70" height="22" alt="" border="0" />
</if>
</td>
<!?End Mp3 Player Launch -->
|