Was ist hier los?
BenediktRB.de

Box um Foldericons

Um eine Box um die Foldericons zu erzeugen musst du das board.tpl ändern.

Suche ganz unten:

<table align="center"> <tr align="left"> <td><span class="smallfont"><img src="{$style['imagefolder']}/newfolder.gif" alt="" title="" border="0" />&nbsp;<b>{$lang->items['LANG_BOARD_NEWFOLDER']}</b></span></td> <td><span class="smallfont">(&nbsp;<img src="{$style['imagefolder']}/newhotfolder.gif" alt="" title="" border="0" />&nbsp;<b>{$lang->items['LANG_BOARD_NEWHOTFOLDER']}</span></td> <td><span class="smallfont"><img src="{$style['imagefolder']}/lockfolder.gif" alt="" title="" border="0" />&nbsp;<b>{$lang->items['LANG_BOARD_LOCKFOLDER']}</b></span></td> </tr> <tr align="left"> <td><span class="smallfont"><img src="{$style['imagefolder']}/folder.gif" alt="" title="" border="0" />&nbsp;<b>{$lang->items['LANG_BOARD_FOLDER']}</b></span></td> <td><span class="smallfont">(&nbsp;<img src="{$style['imagefolder']}/hotfolder.gif" alt="" title="" border="0" />&nbsp;<b>{$lang->items['LANG_BOARD_HOTFOLDER']}</span></td> <td><span class="smallfont"><img src="{$style['imagefolder']}/dotfolder.gif" alt="" title="" border="0" />&nbsp;<b>{$lang->items['LANG_BOARD_DOTFOLDER']}</b></span></td> </tr> </table>
Ersetze diese mit:
<table cellpadding="4" cellspacing="1" border="0" style="width:{$style['tableinwidth']}" class="tableinborder"> <tr align="left" class="tableb"> <td><span class="smallfont"><img src="{$style['imagefolder']}/newfolder.gif" alt="" title="" border="0" />&nbsp;<b>{$lang->items['LANG_BOARD_NEWFOLDER']}</b></span></td> <td><span class="smallfont">(&nbsp;<img src="{$style['imagefolder']}/newhotfolder.gif" alt="" title="" border="0" />&nbsp;<b>{$lang->items['LANG_BOARD_NEWHOTFOLDER']}</span></td> <td><span class="smallfont"><img src="{$style['imagefolder']}/lockfolder.gif" alt="" title="" border="0" />&nbsp;<b>{$lang->items['LANG_BOARD_LOCKFOLDER']}</b></span></td> </tr> <tr align="left" class="tableb"> <td><span class="smallfont"><img src="{$style['imagefolder']}/folder.gif" alt="" title="" border="0" />&nbsp;<b>{$lang->items['LANG_BOARD_FOLDER']}</b></span></td> <td><span class="smallfont">(&nbsp;<img src="{$style['imagefolder']}/hotfolder.gif" alt="" title="" border="0" />&nbsp;<b>{$lang->items['LANG_BOARD_HOTFOLDER']}</span></td> <td><span class="smallfont"><img src="{$style['imagefolder']}/dotfolder.gif" alt="" title="" border="0" />&nbsp;<b>{$lang->items['LANG_BOARD_DOTFOLDER']}</b></span></td> </tr> </table>
Falls zwischen den Spalten keine Abtrennungen sein sollen, sondern nur eine Box nimm diesen Code:
<table cellpadding="4" cellspacing="0" border="0" style="width:{$style['tableinwidth']}; border: 1px #000 solid;" class="tableoutborder"> <tr align="left" class="tableb"> <td><span class="smallfont"><img src="{$style['imagefolder']}/newfolder.gif" alt="" title="" border="0" />&nbsp;<b>{$lang->items['LANG_BOARD_NEWFOLDER']}</b></span></td> <td><span class="smallfont">(&nbsp;<img src="{$style['imagefolder']}/newhotfolder.gif" alt="" title="" border="0" />&nbsp;<b>{$lang->items['LANG_BOARD_NEWHOTFOLDER']}</span></td> <td><span class="smallfont"><img src="{$style['imagefolder']}/lockfolder.gif" alt="" title="" border="0" />&nbsp;<b>{$lang->items['LANG_BOARD_LOCKFOLDER']}</b></span></td> </tr> <tr align="left" class="tableb"> <td><span class="smallfont"><img src="{$style['imagefolder']}/folder.gif" alt="" title="" border="0" />&nbsp;<b>{$lang->items['LANG_BOARD_FOLDER']}</b></span></td> <td><span class="smallfont">(&nbsp;<img src="{$style['imagefolder']}/hotfolder.gif" alt="" title="" border="0" />&nbsp;<b>{$lang->items['LANG_BOARD_HOTFOLDER']}</span></td> <td><span class="smallfont"><img src="{$style['imagefolder']}/dotfolder.gif" alt="" title="" border="0" />&nbsp;<b>{$lang->items['LANG_BOARD_DOTFOLDER']}</b></span></td> </tr> </table>