Laufschrift bei neuer PN

coolguppi
Ich hatte mal ein Addon/Hack für eine Laufschirft im Header bei neuer PN. Leider hab ich den nicht mehr, wer kann mir ma helfen, ich bräuchte das Ding ganz dringend wieder



greetz coolguppi
Terror
ich hol den thread mal wieder hoch, weil ich das auch grad gebrauchen könnte großes Grinsen
Moes
Hab mal schnell was gecodet!
Funzt auch!

Suche in der index.tpl:
code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
  <else>
   <tr>
    <td class="tablea"><table style="width:100%" cellspacing="0" cellpadding="0" border="0">
     <tr class="tablea_fc">
      <td align="left"><span class="smallfont">{$lang->items['LANG_START_WELCOMEBACK']} <b>$usercbar_username</b> <a href="logout.php{$SID_ARG_1ST}">{$lang->items['LANG_START_LOGOUT']}</a><br /><b><a href="search.php?action=new{$SID_ARG_2ND}">{$lang->items['LANG_START_NEWPOSTS']} $lastvisitdate <span class="time">$lastvisittime</span>.</span></td>
      <td align="right"><span class="smallfont">{$lang->items['LANG_START_CURRENTTIME']} <span class="time">$currenttime</span>.<br />{$lang->items['LANG_START_TIMEZONE']}</span></td>
     </tr>
    </table></td>
   </tr>
  </else>
 </if>








Füge darunter ein:
code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
<if($countnew>0)><then>
   <tr>
    <td class="tabletitle" colspan="<if($hide_modcell==0)><then>6</then><else>5</else></if>" align="left"><span class="smallfont"><b>Neue PM! <a href="pms.php">[Klicke Hier]</b></span></td> 
   </tr>
   <tr>
    <td class="tablea" colspan="<if($hide_modcell==0)><then>5</then><else>4</else></if>" align="left"><span class="smallfont"><font color="red"><b><marquee>Sie haben eine neue PM!</marquee></font></b></span></td>
   </tr>	
</then></if>


Kann man natürlich noch anpassen Augenzwinkern

mfg
Dave McClan
Terror
danke sehr, werd´s morgen mal einbauen.

gruss
terror

[edit] hab den ein bisschen modifiziert, sonst zerschiesst er jeden style

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
<if($countnew>0)><then>
<table cellpadding="{$style['tableincellpadding']}" cellspacing="{$style['tableincellspacing']}" border="{$style['tableinborder']}" style="width:{$style['tableinwidth']}" class="tableinborder">
   <tr>
    <td class="tabletitle" colspan="<if($hide_modcell==0)><then>6</then><else>5</else></if>" align="left"><span class="smallfont"><b>Neue PM! <a href="pms.php">[Klicke Hier]</b></span></td> 
   </tr>
   <tr>
    <td class="tablea" colspan="<if($hide_modcell==0)><then>5</then><else>4</else></if>" align="left"><span class="smallfont"><font color="red"><b><marquee>Sie haben eine neue PM!</marquee></font></b></span></td>
   </tr>	
</then></if>