Forum Moderators: not2easy
Here's a sample code to show what I mean:
.left-sidebar {
top:177px;
font-size:8pt;
position:absolute;
width:160px;
left:5px;
}
<td><ul class="left-sidebar"></ul></td>
so:
<table width="100%" border="1" cellspacing="0" cellpadding="0" bgcolor="#ffffff">
<tr class='midrow'><td style="width:17.5%;background:#009999;">
<div id="clearleft">
</div>
</td>
..... rest of the page and at the bottom.
</table>
<div id="leftsidebar">
<?php
include("left_sidebar.inc");
?>
</div>
and for the css:
#clearleft {
width:100%;
height:1400px;
overflow:hidden;
background:#009999;
}
#leftsidebar{
position:absolute;
top:320px;
left:15px;
width:15%;
height:1350px;
background:#009999;
text-align:center;
}