sticky-fingers
mercredi 22 juin 2005 à 23:08
Je testais en local d'autres mods, j'en ai profité pour jeter un oeil a ta question

En recréant un nouveau skin, voila ce qui doit t'interesser dans skin_portal.php :
QUOTE
//===========================================================================
// tmpl_articles_row
//===========================================================================
function tmpl_articles_row($entry="",$bottom_string="",$top_string="") {
global $ibforums;
$IPBHTML = "";
//--starthtml--//
$IPBHTML .= <<<EOF
<div class="borderwrap">
<table cellspacing="0">
<tr>
<td class="maintitle" colspan="2"><{CAT_IMG}> <a href="{$ibforums->base_url}showtopic={$entry['tid']}">{$entry['title']}</a></td>
</tr>
<tr>
<td class="row1" colspan="2">$top_string</td>
</tr>
<tr>
<td class="post1" width="5%" valign="top">{$entry['avatar']}</td>
<td class="post1" width="95%" valign="top"><div style="height: 200px; overflow: auto;">{$entry['post']}
<!--IBF.ATTACHMENT_{$entry['pid']}--></div></td>
</tr>
<tr>
<td class="row1" colspan="2" align="right">
$bottom_string
<a href="{$ibforums->base_url}act=Print&client=printer&f={$entry['forum_id']}&t={$entry['tid']}"><img src='style_images/<#IMG_DIR#>/cs_print.gif' border='0' /></a>
<a href="{$ibforums->base_url}act=Forward&f={$entry['forum_id']}&t={$entry['tid']}"><img src='style_images/<#IMG_DIR#>/cs_email.gif' border='0' /></a>
</td>
</tr>
</table>
</div>
<br />
EOF;
//--endhtml--//
return $IPBHTML;
}