blank spaces

admin

Administrator
Staff member
hi,<br />
<br />
anybody can tell me how i can reduce the white spaces aftrer all combos and buttons i mean to reduce width<br />
<br />
<br />
<html><br />
<form><br />
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" class="mybar"><br />
<TABLE BORDER=1 CELLSPACING=0 CELLPADDING=1 width=100% name="rsTable" id=rsTable cols=11><br />
<tr bgcolor="#cccccc"><br />
<th>Datum</th><br />
<th>Von</th><br />
<th>Bis</th><br />
<th>Kunde</th><br />
<th>Projekt</th><br />
<th>H-Vorgang</th><br />
<th>U-Vorgang</th><br />
<th>Text</th><br />
<th>IST</th><br />
<th>Soll</th><br />
<th>Status</th><br />
<th>&nbsp;</th><br />
</tr><br />
<br />
//values for these headers<br />
<tr><br />
<td nowrap align="center"><br />
<input size="7" type="text" name="datum" ><br />
<img src=http://www.webdeveloper.com/forum/archive/index.php/"../img/cal.gif" ><br />
</td><br />
<td nowrap align="center"><br />
<select name="von"></select><br />
<input type="button" value=">" ><br />
</td><br />
<br />
<td nowrap align="center"><br />
<select name="bis"> </select><br />
</td><br />
<br />
<td align="center"><br />
<select name="projekt"><br />
<br />
</select><br />
</td><br />
<td align="center"><br />
<select name="hvorgang" ><br />
</select> <br />
</td><br />
<td align="center"><br />
<select name="uvorgang"><br />
</select><br />
</td><br />
<td align="center"><br />
<textarea name="text" ></textarea><br />
<img src=http://www.webdeveloper.com/forum/archive/index.php/"../img/edit.gif" ><br />
</td><br />
<td bgcolor="#cccccc" align="center"><br />
<input size="1" type="text" ><br />
</td><br />
<td bgcolor="#cccccc" align="center"><br />
<input size="1" type="text" ><br />
</td><br />
<td align="center"><br />
<select name="status"><br />
</select><br />
</td><br />
<td align="center"><br />
<input type="button" value="S" ><br />
</td><br />
<br />
</tr><br />
<br />
<tr bgcolor="#FACB84"><br />
<td nowrap align="center"><?= $line["datum"] ?></td><br />
<td nowrap align="center"><?= $line["von"] ?></td><br />
<td nowrap align="center"><?= $line["bis"] ?></td><br />
<td nowrap align="center"><?= $line["kunde"] ?></td><br />
<td nowrap align="center"><?= $line["projekt"] ?></td><br />
<td nowrap align="center"><?= $line["hvorgang"] ?></td><br />
<td nowrap align="center"><?= $line["uvorgang"] ?></td><br />
<td align="center"><?echo $output;?></td><br />
<td nowrap align="center"><?= $line["ist"] ?></td><br />
<td nowrap align="center"><?= $line["soll"] ?></td><br />
<td nowrap align="center"><?= $line["status"] ?></td><br />
</tr><br />
<br />
</table><br />
<br />
</body><br />
<br />
</html><br />
<br />
<br />
thanks in advance<!--content-->Try putting the </TD> on the same line as the </SELECT>.<!--content-->u mean to say like this<br />
<br />
<td align="center"><br />
<select name="hvorgang" ><br />
//php code to get values form database<br />
</select> </td> <br />
<br />
please let me know<br />
<br />
thanks<!--content--><TABLE BORDER=1 CELLSPACING=0 CELLPADDING=0style="width : 250px;" name="rsTable" id=rsTable cols=11><br />
<col style="width : 125px;" /><br />
<col style="width : 125px;" /><br />
<input size="1" type="hidden" name="nr" value="<?= $pk ?>"><br />
<td nowrap align="center"><br />
<input size="7" type="text" name="datum" value="<?=$D?> <?= date("d.m.y") ?>"><br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"javascript:show_calendar('tstest.datum');"><img src=http://www.webdeveloper.com/forum/archive/index.php/"../img/cal.gif" width="16" height="16" border="0" alt="Click Here to Pick up the date"></a></td><br />
<br />
when i use like this first 2 fields alignment increases rest 9 cols looks perfect<br />
<br />
anybody sort out the problem really be appreciable<!--content-->can you give us a link so we can see whats happening with our own eyes maybe... after his code that is.<!--content-->sorry for late reply as i ws lil busy<br />
<br />
this is the link <!-- m --><a class="postlink" href="http://server2.vitodesign.com/log.phtml">http://server2.vitodesign.com/log.phtml</a><!-- m --><br />
u can see also attached image<!--content-->
 
Back
Top