Io ho quasi risolto; leggi il mio topic:
http://forum.joomla.it/index.php/topic,154571.msg691678.html#msg691678
Ti ringrazio, ma per me va bene anche con le tabelle, quello che conta è il risultato
Nei prossimi siti userò un modulo contatti di qualche estensione.
Cmq la mia soluzione è questa:
Override nel defauld_form.php con il seguente codice:
<table width="600" border="0">
<tr>
<td width="200" height="40"><?php echo $this->form->getLabel('contact_name'); ?></td>
<td height="40"><?php echo $this->form->getInput('contact_name'); ?></td>
</tr>
<tr>
<td width="200" height="40"><span id="contatti"><?php echo $this->form->getLabel('contact_email'); ?></span></td>
<td height="40"><span id="contatti"><?php echo $this->form->getInput('contact_email'); ?></span></td>
</tr>
<tr>
<td width="200" height="40"><span id="contatti"><?php echo $this->form->getLabel('contact_subject'); ?></span></td>
<td height="40"><span id="contatti"><?php echo $this->form->getInput('contact_subject'); ?></span></td>
</tr>
<tr>
<td width="200"><span id="contatti"><?php echo $this->form->getLabel('contact_message'); ?></span></td>
<td><span id="contatti"><?php echo $this->form->getInput('contact_message'); ?></span></td>
</tr>
<tr>
<td width="200" height="40"><dl>
<span id="contatti">
<?php if ($this->params->get('show_email_copy')){ ?>
<?php echo $this->form->getLabel('contact_email_copy'); ?>
</span>
</dl></td>
<td height="40"><span id="contatti"><?php echo $this->form->getInput('contact_email_copy'); ?></span></td>
</tr>
</table>
ed ho reimpostato in beezss .css i valori di table border e td tr border su border=none
Ciao!