Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Eliminate space around ASP buttons in HTML tables

Status
Not open for further replies.

ethandanielroberts

Programmer
Nov 15, 2000
14
GB
Hi all. I'm trying to right align buttons generated by ASP. I've tried (seemingly) everything from cellpadding/spacing, creating different cells, putting the buttons on the same line, aligning them different ways, forcing the size, but no matter what there is alway large spaces between the three buttons and they will not align right. Any ideas? Here's the code:

<table class=&quot;cBackGroundTable&quot;>
<tr>
<td valign=&quot;center&quot; align=&quot;middle&quot;>

<table class=&quot;cStandardTable&quot; cellpadding=&quot;0&quot; cellspacing=&quot;10&quot; border=0>
<tr>
<td align=&quot;right&quot; width=&quot;25%&quot;>Username:</td>
<td><input NAME=&quot;loginname&quot; style=&quot;width:100%&quot;>
</td>
</tr>
<tr>
<td align=&quot;right&quot;>Password:</td>
<td><input type=&quot;password&quot; NAME=&quot;password&quot; style=&quot;width:100%&quot;>
</td>
</tr>
<tr align=right>
<td valign=&quot;center&quot; colspan=2>
<%=ButtonSetup(&quot;Ok&quot;, &quot;frmLogin.submit()&quot;, false)%>
<%=ButtonSetup(&quot;Cancel&quot;, &quot;location.replace('./login.asp')&quot;, false)%>
<%=ButtonSetup(&quot;Info&quot;, &quot;location.replace('./info.htm')&quot;, false)%>
</td>
</tr>
</table>
</td>
</tr>
</table> ¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬
Syclick Ltd.
+44 (0)780 308 5845
ethan@syclick.com
 
I looks like your using css. what is your table width set up as. It sounds like it must be setup as something like 80% or something like that. Include a second style sheet with a class that contains a different table width.

Mark
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top