Ciao ..
come faccio ad eliminare (ridurre) gli spazi tra i vari elementi ..
(tra form e table .. e tra form e form )
Grazie mille
Codice PHP:
<div id="ricerca_2" style="height: 420px; padding: 0 5px 5px 5px;">
<div id="ricerca_sub" style="padding: 0 0 0 30px; border: 1px solid blue;">
<?php
if ($stato == 'CHIUSA')
{echo "<form style=\"width: 570px; border: 1px solid red;\" method=post target=\"_blank\" action=polizze_disd_edit.php>";}
else
{echo "<form style=\"width: 420px; border: 1px solid red;\" method=post action=polizze_stato_exe.php>";}
?>
<fieldset>
<table border="1">
<tr>
<td width="80">
<label style="color: #666666;">Disdetta: </label>
</td>
<td width="200">
<?php
echo "<input id=\"theDate2\" type=text size=\"6\" readonly=\"readonly\" name=\"data_operazione\" value=" . "'" .$today_2. "'". ">";
echo "  ";
echo "<input id=\"tasto_calen\" title= 'calendario' type=\"button\" onclick=\"displayCalendar(document.getElementById('theDate2'),'dd/mm/yyyy',this)\">";
?>
</td>
<td width="100">
<?php
if ($sw_tasto_disd == 'ON')
{echo "<input id='tasto_small' style=\"font: bold 11px/0.8 Georgia, 'Times New Roman', serif;\" onclick=\"return(confirm('Confermi disdetta ?'))\" type=submit name='disdetta' value='Esegui'>
";}
else
{echo "<input id='tasto_small_off' style=\"font: bold 11px/0.8 Georgia, 'Times New Roman', serif;\" type=submit disabled=\"disabled\" name='disdetta' value='Esegui'>
";}
?>
</td>
<?php
if ($stato == 'CHIUSA')
{
echo "<td width=\"140\" align=\"right\">";
echo "<input id='tasto_small' style=\"font: bold 11px/0.8 Georgia, 'Times New Roman', serif;\" type=submit name='disdetta_edit' value='Lettera'>";
echo "</td>";
}
?>
</tr>
</table>
</fieldset>
</form>
<form style="width: 420px; border: 1px solid red;" method=post action=polizze_stato_exe.php>
<fieldset>
<table style="padding: 0;" border="1">
<tr>
<td width="80">
<label style="color: #666666;">Attiva: </label>
</td>
<td width="200">
<?php
echo "<input id=\"theDate1\" type=text size=\"6\" readonly=\"readonly\" name=\"data_operazione\" value=" . "'" .$today_1. "'". ">";
echo "  ";
echo "<input id=\"tasto_calen\" title= 'calendario' type=\"button\" onclick=\"displayCalendar(document.getElementById('theDate1'),'dd/mm/yyyy',this)\">";
?>
</td>
<td width="100">
<?php
if ($sw_tasto_attiva == 'ON')
{echo "<input id='tasto_small' style=\"font: bold 11px/0.8 Georgia, 'Times New Roman', serif;\" onclick=\"return(confirm('Confermi attivazione ?'))\" type=submit name='attiva' value='Esegui'>
";}
else
{echo "<input id='tasto_small_off' style=\"font: bold 11px/0.8 Georgia, 'Times New Roman', serif;\" type=submit disabled=\"disabled\" name='attiva' value='Esegui'>
";}
?>
</td>
</tr>
</table>
</fieldset>
</form>