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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Table in a groupbox under NS 6.2 low resolution

Status
Not open for further replies.

vinayak

Technical User
Sep 17, 2001
50
IN
Hi
I have following code which appears on top right corner of the screen among host of other screen elements.

In NS 6.2 600X800 "dummy@dummy.com" text runs over the groupbox border, in fact its the table which runs over the groupbox border.

I'm not sure if I can attach an image in this post?

Whether I'm doing something wrong here?

<TABLE align=center bgColor=#eeeeee border=0 cellPadding=1 cellSpacing=0
width=&quot;100%&quot;>

<TR>
<TD width=1></TD>
<TD vAlign=center>
<FIELDSET class=GroupBox>
<LEGEND class=header>Contact Info </LEGEND>
<TABLE border=0 cellPadding=1 cellSpacing=0 width=&quot;100%&quot;>
<TR>
<TD class=tablecontents width=&quot;10%&quot;> </TD>
<TD class=tablecontents width=&quot;90%&quot;>Admin</TD></TR>
<TR>
<TD class=tablecontents width=&quot;10%&quot;> </TD>
<TD class=tablecontents width=&quot;90%&quot;>ABC</TD></TR>
<TR>
<TD class=tablecontents width=&quot;10%&quot;> </TD>
<TD class=tablecontents width=&quot;90%&quot;>MX 40620</TD></TR>
<TR>
<TD class=tablecontents width=&quot;10%&quot;> </TD>
<TD class=tablecontents width=&quot;90%&quot;>Phone 111</TD></TR>
<TR>
<TD class=tablecontents width=&quot;10%&quot;> </TD>
<TD class=tablecontents width=&quot;90%&quot;>Fax 1234516</TD></TR>
<TR>
<TD class=tablecontents width=&quot;10%&quot;> </TD>
<TD width=&quot;90%&quot;><A href=&quot;mailto:dummy@dummy.com?subject=&quot;
title=mailto>dummy@dummy.com</A>
</TD></TR></TABLE></FIELDSET></TD></TR></TABLE>

 
Hi,

Firstly it looks fine in IE6. The table in the fieldset, perhaps if you remove the width=&quot;100%&quot; it might help? Some browsers use these differently and it's possible it's setting the table 100% of the window instead of the parent element. Just a guess.

Secondly you have a few errors in the html, so I cleaned it up a little. there is no valign=&quot;center&quot; , its align=&quot;center&quot; or valign=&quot;middle&quot;


<table align=&quot;center&quot; bgcolor=&quot;#EEEEEE&quot; border=&quot;0&quot;
cellpadding=&quot;1&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot; summary=&quot;&quot;>
<tr>
<td width=&quot;1&quot;></td>
<td valign=&quot;middle&quot;>
<fieldset class=&quot;GroupBox&quot;><legend class=&quot;header&quot;>Contact
Info</legend>

<table border=&quot;1&quot; summary=&quot;&quot; cellpadding=&quot;1&quot; cellspacing=&quot;0&quot;
width=&quot;100%&quot;>
<tr>
<td class=&quot;tablecontents&quot; width=&quot;10%&quot;></td>
<td class=&quot;tablecontents&quot; width=&quot;90%&quot;>Admin</td>
</tr>

<tr>
<td class=&quot;tablecontents&quot; width=&quot;10%&quot;></td>
<td class=&quot;tablecontents&quot; width=&quot;90%&quot;>ABC</td>
</tr>

<tr>
<td class=&quot;tablecontents&quot; width=&quot;10%&quot;></td>
<td class=&quot;tablecontents&quot; width=&quot;90%&quot;>MX 40620</td>
</tr>

<tr>
<td class=&quot;tablecontents&quot; width=&quot;10%&quot;></td>
<td class=&quot;tablecontents&quot; width=&quot;90%&quot;>Phone 111</td>
</tr>

<tr>
<td class=&quot;tablecontents&quot; width=&quot;10%&quot;></td>
<td class=&quot;tablecontents&quot; width=&quot;90%&quot;>Fax 1234516</td>
</tr>

<tr>
<td class=&quot;tablecontents&quot; width=&quot;10%&quot;></td>
<td width=&quot;90%&quot;><a href=&quot;mailto:dummy@dummy.com?subject=&quot;
title=&quot;mailto&quot;>dummy@dummy.com</a></td>
</tr>
</table>
</fieldset>
</td>
</tr>
</table>

Hope that helps



:: ::
 
I verified,
with your code. I removed the 100% width but still out of luck.

It will be great if I can attach an image.

Sorry Idea didn't work. Let me if you have other ideas.



 
1. I'm not able to see any option through which I can attach an image in the forum

2. No I do not use CSS for any of my tables.

3. I have lot of code which is displayed on the screen.The section I have posted goes to the top right corner of the screen. I dont see anything wrong with the other code that comes in. If needed I will post full length of code.

Please help.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top