per tutti coloro che ne fossero interessati sono riuecito ad esffettuare la modifica ho modigicato il file boarindex.template
piu precisamente sotto a
/* Each category in categories is made up of:
id, href, link, name, is_collapsed (is it collapsed?), can_collapse (is it okay if it is?),
new (is it new?), collapse_href (href to collapse/expand), collapse_image (up/down iamge),
and boards. (see below.) */
foreach ($context['categories'] as $category)
{
ho sostituito
echo '
<div class="tborder" style="margin-top: ' , $first ? '0;' : '1ex;' , '' , $context['browser']['needs_size_fix'] && !$context['browser']['is_ie6'] ? 'width: 100%;' : '', '">
<div class="catbg', $category['new'] ? '2' : '', '" style="padding: 5px 5px 5px 10px;">';
$first = false;
// If this category even can collapse, show a link to collapse it.
if ($category['can_collapse'])
echo '
<a href="', $category['collapse_href'], '">', $category['collapse_image'], '</a>';
echo '
', $category['link'], '
</div>';
con
// Show the category's name, and let them collapse it... if they feel like it.
echo '
<div ', $context['browser']['needs_size_fix'] && !$context['browser']['is_ie6'] ? 'style="width: 100%;"' : '', '>
<table border="0" width="100%" cellspacing="0" cellpadding="0" >
<tr>
<td style="background: url(' . $settings['images_url'] . '/catbgsol.gif) no-repeat;width:11px;height:30px;"></td>
<td class="catbg" style="padding: 5px 5px 5px 10px;">';
$first = false;
// If this category even can collapse, show a link to collapse it.
if ($category['can_collapse'])
echo '
<a href="', $category['collapse_href'], '">', $category['collapse_image'], '</a>';
echo '
', $category['link'], '</td>
<td style="background: url(' . $settings['images_url'] . '/catbgsag.gif) no-repeat;width:12px;height:30px;"> </td>
</tr></table><table border="0" width="100%" cellspacing="1" cellpadding="0" class="bordercolor2">
<tr class="titlebg">
<td></td>
<td><font style="font-size: 8pt">', $txt[20], '</font></td>
<td width="22%" align="center"><font style="font-size: 8pt">', $txt[22], '</font></td>
<td width="6%" align="center"><font style="font-size: 8pt">', $txt[330], '</font></td>
<td width="6%" align="center"><font style="font-size: 8pt">', $txt[21], '</font></td>
<td width="11%" align="center"><font style="font-size: 8pt">', $txt[298], '</font></td>
</tr>
';
ovviamente chiamando i 2 bordi laterali come si evince dal codice catbgsol.gif e catgbsag.gif
allego in oltre il file gia modificato per tema de defoult