
04-15-2002, 11:21 PM
|
![wooolF[RM]'s Avatar](customavatars/avatar4816_0.gif) |
|
|
Join Date: Jan 2002
Posts: 524
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
]works fine, thanx
Quote:
Originally posted by Unknown553
Great hack and all, but in the install file it says that you've been having trouble with the div tags. You don't even need the div tag, the A tag has the id attribute too (oh yeah, and there is no title attribute in the A tag either), so you can change
Code:
<div id="pm"><a href="private.php?s=$session[sessionhash]" title="Private Messages"><smallfont>$headpm[messages] New PM(s)</smallfont></a></div>
<script language="javascript">
blink('pm');
</script>
to
Code:
<a href="private.php?s=$session[sessionhash]" id="pm"><smallfont>$headpm[messages] New PM(s)</smallfont></a>
<script language="javascript">
blink('pm');
</script>
And it works fine, with no concern for HTML errors.
|
|