zuzupus
07-22-2003, 06:30 AM
hi,
anybody can tell me how i can reduce the white spaces aftrer all combos and buttons i mean to reduce width
<html>
<form>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" class="mybar">
<TABLE BORDER=1 CELLSPACING=0 CELLPADDING=1 width=100% name="rsTable" id=rsTable cols=11>
<tr bgcolor="#cccccc">
<th>Datum</th>
<th>Von</th>
<th>Bis</th>
<th>Kunde</th>
<th>Projekt</th>
<th>H-Vorgang</th>
<th>U-Vorgang</th>
<th>Text</th>
<th>IST</th>
<th>Soll</th>
<th>Status</th>
<th> </th>
</tr>
//values for these headers
<tr>
<td nowrap align="center">
<input size="7" type="text" name="datum" >
<img src="../img/cal.gif" >
</td>
<td nowrap align="center">
<select name="von"></select>
<input type="button" value=">" >
</td>
<td nowrap align="center">
<select name="bis"> </select>
</td>
<td align="center">
<select name="projekt">
</select>
</td>
<td align="center">
<select name="hvorgang" >
</select>
</td>
<td align="center">
<select name="uvorgang">
</select>
</td>
<td align="center">
<textarea name="text" ></textarea>
<img src="../img/edit.gif" >
</td>
<td bgcolor="#cccccc" align="center">
<input size="1" type="text" >
</td>
<td bgcolor="#cccccc" align="center">
<input size="1" type="text" >
</td>
<td align="center">
<select name="status">
</select>
</td>
<td align="center">
<input type="button" value="S" >
</td>
</tr>
<tr bgcolor="#FACB84">
<td nowrap align="center"><?= $line["datum"] ?></td>
<td nowrap align="center"><?= $line["von"] ?></td>
<td nowrap align="center"><?= $line["bis"] ?></td>
<td nowrap align="center"><?= $line["kunde"] ?></td>
<td nowrap align="center"><?= $line["projekt"] ?></td>
<td nowrap align="center"><?= $line["hvorgang"] ?></td>
<td nowrap align="center"><?= $line["uvorgang"] ?></td>
<td align="center"><?echo $output;?></td>
<td nowrap align="center"><?= $line["ist"] ?></td>
<td nowrap align="center"><?= $line["soll"] ?></td>
<td nowrap align="center"><?= $line["status"] ?></td>
</tr>
</table>
</body>
</html>
thanks in advance
anybody can tell me how i can reduce the white spaces aftrer all combos and buttons i mean to reduce width
<html>
<form>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" class="mybar">
<TABLE BORDER=1 CELLSPACING=0 CELLPADDING=1 width=100% name="rsTable" id=rsTable cols=11>
<tr bgcolor="#cccccc">
<th>Datum</th>
<th>Von</th>
<th>Bis</th>
<th>Kunde</th>
<th>Projekt</th>
<th>H-Vorgang</th>
<th>U-Vorgang</th>
<th>Text</th>
<th>IST</th>
<th>Soll</th>
<th>Status</th>
<th> </th>
</tr>
//values for these headers
<tr>
<td nowrap align="center">
<input size="7" type="text" name="datum" >
<img src="../img/cal.gif" >
</td>
<td nowrap align="center">
<select name="von"></select>
<input type="button" value=">" >
</td>
<td nowrap align="center">
<select name="bis"> </select>
</td>
<td align="center">
<select name="projekt">
</select>
</td>
<td align="center">
<select name="hvorgang" >
</select>
</td>
<td align="center">
<select name="uvorgang">
</select>
</td>
<td align="center">
<textarea name="text" ></textarea>
<img src="../img/edit.gif" >
</td>
<td bgcolor="#cccccc" align="center">
<input size="1" type="text" >
</td>
<td bgcolor="#cccccc" align="center">
<input size="1" type="text" >
</td>
<td align="center">
<select name="status">
</select>
</td>
<td align="center">
<input type="button" value="S" >
</td>
</tr>
<tr bgcolor="#FACB84">
<td nowrap align="center"><?= $line["datum"] ?></td>
<td nowrap align="center"><?= $line["von"] ?></td>
<td nowrap align="center"><?= $line["bis"] ?></td>
<td nowrap align="center"><?= $line["kunde"] ?></td>
<td nowrap align="center"><?= $line["projekt"] ?></td>
<td nowrap align="center"><?= $line["hvorgang"] ?></td>
<td nowrap align="center"><?= $line["uvorgang"] ?></td>
<td align="center"><?echo $output;?></td>
<td nowrap align="center"><?= $line["ist"] ?></td>
<td nowrap align="center"><?= $line["soll"] ?></td>
<td nowrap align="center"><?= $line["status"] ?></td>
</tr>
</table>
</body>
</html>
thanks in advance