column cells height

liunx

Guest
I have a problem arranging the column on my webpage. The whole page is in the tabular format that looks like this:<br />
<br />
------------------------------------------------------<br />
| logo | TITLE |<br />
------------------------------------------------------<br />
| Home | |<br />
------------- |<br />
| About | |<br />
------------- |<br />
| Students | |<br />
------------- |<br />
| Pictures | |<br />
------------- |<br />
| | body |<br />
| | |<br />
| bar | |<br />
| | |<br />
| | |<br />
| | |<br />
------------------------------------------------------<br />
<br />
<br />
What I want to do is to be able to stretch the body cell to any height without affecting the cells above the bar cell. the reason for this is that each of the cells above bar cell contains an image of specific size and once I try to use <br> many times within the body cell, all cells of the same column as bar cell stretch vertically, thus exposing the background behind the image, whereas I want only bar cell (which is blank by the way) to stretch with the body cell (body cell should be able to contain any number of lines without distorting the entire table).<br />
The page looks like this when stretched: <!-- m --><a class="postlink" href="http://mkashlev.dyndns.org:7771/ISSI2003-web/about3.html">http://mkashlev.dyndns.org:7771/ISSI200 ... bout3.html</a><!-- m --><br />
whereas I want it to look like this<br />
<!-- m --><a class="postlink" href="http://mkashlev.dyndns.org:7771/ISSI2003-web/about2.html">http://mkashlev.dyndns.org:7771/ISSI200 ... bout2.html</a><!-- m --><br />
<br />
My code is as follows:<br />
<br />
<HTML><br />
<HEAD><br />
<TITLE>template</TITLE><br />
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><br />
</HEAD><br />
<BODY BGCOLOR=gray MARGINWIDTH=0 MARGINHEIGHT=0><br />
<!-- ImageReady Slices (template.psd) --><br />
<TABLE WIDTH=700 BORDER=0 CELLPADDING=0 CELLSPACING=0 align=center height=100%><br />
<TR><br />
<TD height=79><br />
<A HREF=http://www.webdeveloper.com/forum/archive/index.php/"http://www.weizmann.ac.il"><br />
<IMG SRC=http://www.webdeveloper.com/forum/archive/index.php/"images/Weizmann-Institute.gif" WIDTH=97 HEIGHT=79 BORDER=0 ALT=""></A></TD><br />
<TD height=79><br />
<IMG SRC=http://www.webdeveloper.com/forum/archive/index.php/"images/about_02.gif" WIDTH=8 HEIGHT=79 ALT=""></TD><br />
<TD height=79><br />
<IMG SRC=http://www.webdeveloper.com/forum/archive/index.php/"images/about_03.gif" WIDTH=595 HEIGHT=79 ALT=""></TD><br />
</TR><br />
<TR><br />
<TD height=9><br />
<IMG SRC=http://www.webdeveloper.com/forum/archive/index.php/"images/about_04.gif" WIDTH=97 HEIGHT=9 ALT=""></TD><br />
<TD height=9><br />
<IMG SRC=http://www.webdeveloper.com/forum/archive/index.php/"images/about_05.gif" WIDTH=8 HEIGHT=9 ALT=""></TD><br />
<TD height=9><br />
<IMG SRC=http://www.webdeveloper.com/forum/archive/index.php/"images/about_06.gif" WIDTH=595 HEIGHT=9 ALT=""></TD><br />
</TR><br />
<TR><br />
<TD height=34><br />
<A HREF=http://www.webdeveloper.com/forum/archive/index.php/"index.html"><br />
<IMG SRC=http://www.webdeveloper.com/forum/archive/index.php/"images/Home.gif" WIDTH=97 HEIGHT=34 BORDER=0 ALT=""></A></TD><br />
<TD ROWSPAN=5 height=153><br />
<IMG SRC=http://www.webdeveloper.com/forum/archive/index.php/"images/about_08.gif" WIDTH=8 HEIGHT=153 ALT=""></TD><br />
<TD ROWSPAN=7 bgcolor=#1c2a91 height="*"><br />
<!--<IMG SRC=http://www.webdeveloper.com/forum/archive/index.php/"images/about_09.gif" WIDTH=595 HEIGHT=845 ALT="">--><br />
<br><br><br><br><br><br><br><br />
</TD><br />
</TR><br />
<TR><br />
<TD height=31><br />
<A HREF=http://www.webdeveloper.com/forum/archive/index.php/"about.html"><br />
<IMG SRC=http://www.webdeveloper.com/forum/archive/index.php/"images/About.gif" WIDTH=97 HEIGHT=31 BORDER=0 ALT=""></A></TD><br />
</TR><br />
<TR><br />
<TD height=37><br />
<A HREF=http://www.webdeveloper.com/forum/archive/index.php/"students.html"><br />
<IMG SRC=http://www.webdeveloper.com/forum/archive/index.php/"images/Students.gif" WIDTH=97 HEIGHT=37 BORDER=0 ALT=""></A></TD><br />
</TR><br />
<TR><br />
<TD height=38><br />
<A HREF=http://www.webdeveloper.com/forum/archive/index.php/"pics.html"><br />
<IMG SRC=http://www.webdeveloper.com/forum/archive/index.php/"images/Pictures.gif" WIDTH=97 HEIGHT=38 BORDER=0 ALT=""></A></TD><br />
</TR><br />
<TR><br />
<TD height=13><br />
<IMG SRC=http://www.webdeveloper.com/forum/archive/index.php/"images/about_13.gif" WIDTH=97 HEIGHT=13 ALT=""></TD><br />
</TR><br />
<TR><br />
<TD COLSPAN=2 bgcolor=#1c2a91><br />
<!--<IMG SRC=http://www.webdeveloper.com/forum/archive/index.php/"images/about_14.gif" WIDTH=105 HEIGHT=692 ALT="">--></TD><br />
</TR><br />
<TR><br />
<TD COLSPAN=2 bgcolor=#1c2a91><br />
&nbsp;<br />
</TD><br />
</TR><br />
</TABLE><br />
<!-- End ImageReady Slices --><br />
</BODY><br />
</HTML><br />
<br />
<br />
Thanks for your reply in advance.<br />
<br />
~Dmitry<!--content-->If you make the cells on the left rigid in width and use %'s on the body cell and make the table something like width="100%" it should do what you want to accompllish if I understood your question. You should really consider using css for layout though...<!--content-->Are yo utalking about the width of the cell? I need to adjust height of teh cell and not width<!--content-->Ok well make the cells to the left rigid except for the bar and then you can make the body a % and not speciy a height for the bar.<!--content-->
 
Back
Top