Ciao cotrufo
La modifica delle larghezze delle colonne dipende in gran parte da come è fatto il template.
Ad esempio se in un template trovi:
<div id="leftcol">
<a name="menu">[/url]
<?php
if (mosCountModules( "left" )) {
mosLoadModules ( 'left',-3);
}
?>
</div>
Devi andare nel file template_css.css e cercare la classe
leftcol che dovrebbe presentarsi così:
#leftcol {
background: transparent;
width: 137px;
margin: 0px;
padding: 0px;
}
per modificarne la larghezza basta modificare il valore di width.
In alternativa in qualche template vengono usate le tabelle:
<table width="929" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="25" height="340" align="left" rowspan="1" class="leftborder"></td>
<td width="140" height="340" valign="top" class="left" >
<div >
<?php mosLoadModules ( 'left', 0 ); ?>
</div>
</td >
<td width="10" align="center" class="filetto"></td>
<td width="550" height="340" class="maincontent" valign="top">
<?php if (mosCountModules( "top" )) { mosLoadModules('top'); } ?>
<?php include_once ("mainbody.php"); ?> </td>
<td width="150" height="340" valign="top" class="right" >
<?php
if (mosCountModules( "right" )) { mosLoadModules('right',0); }
if (mosCountModules( "user1" )) { mosLoadModules('user1',0); }
if (mosCountModules( "user2" )) { mosLoadModules('user2',0); }
?> </td>
<td width="40" height="340" align="right" class="rightborder"></td>
</tr>
</table>
i tag html <table> e </table> aprono e chiudono una tabella
i tag html <tr> e </tr> aprono e chiudono una riga
i tag html <td> e </td> aprono e chiudino una colonna.
Nell'esempio sopra riportato in neretto ti ho evidenziato la colonna di destra. Per modificarne la larghezza basta modificare il valore di width.
Spero di essere stato d'aiuto