ironchef
10-04-2004, 05:33 PM
Greetings,
Here is the basic framework of a Web site I am putting together.
<table id="site_table">
<tr>
<td class="site_left"></td>
<td class="site_center">
<table id="main">
<tr>
<td colspan="2" class="header">
//HEADER AREA
</td>
</tr>
<tr>
<td class="navigation">
//NAVIGATION
</td>
<td class="main">
//BODY
</td>
</tr>
</table>
</td>
<td class="site_right"> </td>
</tr>
</table>
CSS:
body {
background:#E3E8EE;
width:100%;
height:100%;
}
#site_table {
width:100%;
height:100%;
border-collapse:collapse;
}
#site_table .site_left {
width:50%;
}
#site_table .site_center {
width:760px;
min-width:760px;
max-width:760px;
height:100%;
background:#ffffff;
vertical-align:top;
padding:0px;
border: 1px solid #4A5C6F;
border-style: none solid none solid;
}
#site_table .site_right {
width:50%;
}
#main {
margin:0px;
border:0px;
padding:0px;
}
#main .header{
background:#ffffff;
vertical-align:top;
}
#header {
width:100%;
text-align:center;
background: #0B447F;
height:100%
padding:0px;
margin:0px;
border:0px;
}
#main .navigation {
width:180px;
min-width:180px;
background:#0B447F;
padding:1px;
border:0px;
margin:0px;
vertical-align:top;
height:100%;
}
#main .main {
padding:15px;
vertical-align:top;
height:100%;
}
You can actually take a look at the site at www.neable.org. The bottom part of the site is what is stumping me. I need the navigational section (the column to the left that houses the navigational tree, dark-blue background) to be at 100%. I cannot get it to do that. Does anyone know how i can make the navigational section be 100%? Height="100%" does not work and plus its doesn't validate.
TIA
-Ironchef
Here is the basic framework of a Web site I am putting together.
<table id="site_table">
<tr>
<td class="site_left"></td>
<td class="site_center">
<table id="main">
<tr>
<td colspan="2" class="header">
//HEADER AREA
</td>
</tr>
<tr>
<td class="navigation">
//NAVIGATION
</td>
<td class="main">
//BODY
</td>
</tr>
</table>
</td>
<td class="site_right"> </td>
</tr>
</table>
CSS:
body {
background:#E3E8EE;
width:100%;
height:100%;
}
#site_table {
width:100%;
height:100%;
border-collapse:collapse;
}
#site_table .site_left {
width:50%;
}
#site_table .site_center {
width:760px;
min-width:760px;
max-width:760px;
height:100%;
background:#ffffff;
vertical-align:top;
padding:0px;
border: 1px solid #4A5C6F;
border-style: none solid none solid;
}
#site_table .site_right {
width:50%;
}
#main {
margin:0px;
border:0px;
padding:0px;
}
#main .header{
background:#ffffff;
vertical-align:top;
}
#header {
width:100%;
text-align:center;
background: #0B447F;
height:100%
padding:0px;
margin:0px;
border:0px;
}
#main .navigation {
width:180px;
min-width:180px;
background:#0B447F;
padding:1px;
border:0px;
margin:0px;
vertical-align:top;
height:100%;
}
#main .main {
padding:15px;
vertical-align:top;
height:100%;
}
You can actually take a look at the site at www.neable.org. The bottom part of the site is what is stumping me. I need the navigational section (the column to the left that houses the navigational tree, dark-blue background) to be at 100%. I cannot get it to do that. Does anyone know how i can make the navigational section be 100%? Height="100%" does not work and plus its doesn't validate.
TIA
-Ironchef