| View previous topic :: View next topic |
| Author |
Message |
tovhtml
Joined: 06 Nov 2005 Posts: 5
|
Posted: Sun Nov 06, 2005 9:30 pm Post subject: In explorer - ok, in Netscape content start in mid height |
|
|
Hi,
In explorer the web site looks ok, in Netscape content start in the middle
of a column instead of in the top.
To be more specific: The web page is divided into three parts, The middle
part contain 3 tables and there is one table on the right and one on the left.
The side tables are in the same length as the middle one but part of them is
empty. I would like the content in the sides to start from the top and not to
be in the middle of the columns height.
Help will be appreciated. |
|
| Back to top |
|
 |
|
|
ReFredzRate 1000+ Club

Joined: 20 Aug 2004 Posts: 2186 Location: Netherlands
|
Posted: Sun Nov 06, 2005 9:43 pm Post subject: Re: In explorer - ok, in Netscape content start in mid height |
|
|
Try adding this to your <TD> tag:
VALIGN="top" |
|
| Back to top |
|
 |
tovhtml
Joined: 06 Nov 2005 Posts: 5
|
Posted: Sun Nov 06, 2005 10:22 pm Post subject: Re: In explorer - ok, in Netscape content start in mid height |
|
|
| Thank you Freddy, Tried what you suggeted but it's still not working |
|
| Back to top |
|
 |
webmaster Site Admin

Joined: 17 Aug 2004 Posts: 3589 Location: Sweden
|
Posted: Sun Nov 06, 2005 10:33 pm Post subject: Re: In explorer - ok, in Netscape content start in mid height |
|
|
Welcome to DEVPPL, try this:
| Code: |
<table>
<tr>
<td valign="top">Text</td>
<td><table></table><table></table><table></table></td>
<td valign="top">Text</td>
</tr>
</table> |
|
|
| Back to top |
|
 |
tovhtml
Joined: 06 Nov 2005 Posts: 5
|
Posted: Sun Nov 06, 2005 11:16 pm Post subject: Re: In explorer - ok, in Netscape content start in mid height |
|
|
Thank you again, it's still not working (in Netscape), here is the code
I'm using:
<table height="100%">
<tr>
<td valign="top">
<center>
<br>
<a href="xxxx.html">
<font color="#333333"><font size="-1">
yyyyyy zzzzz</font></font></a>
<br>
<br>
<a href="index.html">
<font color="#333333"><font size="-1">
Home</font></font></a>
<br>
etc. etc.........................
....................
..................... |
|
| Back to top |
|
 |
webmaster Site Admin

Joined: 17 Aug 2004 Posts: 3589 Location: Sweden
|
Posted: Mon Nov 07, 2005 10:24 am Post subject: Re: In explorer - ok, in Netscape content start in mid height |
|
|
Try to run this code:
| Code: |
<table height="100%">
<tr>
<td valign="top">Text</td>
<td><table><tr><td>a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br /></td></tr></table></td>
<td valign="top">Text</td>
</tr>
</table> |
Same thing? |
|
| Back to top |
|
 |
tovhtml
Joined: 06 Nov 2005 Posts: 5
|
Posted: Mon Nov 07, 2005 2:57 pm Post subject: Re: In explorer - ok, in Netscape content start in mid height |
|
|
<table height="100%">
<tr>
<td valign="top">Text</td>
<td><table><tr><td>a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br />a<br /></td></tr></table></td>
<td valign="top">Text</td>
</tr>
</td>
I am not sure how the above code would look like, however, it led me to
the solution:
<table height="100%">
<tr>
<td valign="top">
Text
<td>
<td>
<td>
.
.
.
</td>
</tr>
</table>
I just filled the empty space in the side columns with <br> to the level of
the middle column. It may not be the professional solution but it works... |
|
| Back to top |
|
 |
tovhtml
Joined: 06 Nov 2005 Posts: 5
|
Posted: Mon Nov 07, 2005 3:02 pm Post subject: Re: In explorer - ok, in Netscape content start in mid height |
|
|
Sorry, it should be:
<br>
<br>
<br>
.
.
.
not:
<td>
<td>
<td>
.
.
. |
|
| Back to top |
|
 |
|