|
echo "<div id=\"join\">";
echo "<div id=\"main\">";
echo "<div id=\"contents\">";
echo "<div id=\"left_strip\">";
echo "<div id=\"content_table\">";
content here
echo "</div>";
echo "<div id=\"pagination\">";
$show->pagination();
echo "</div>";
echo "<div id=\"content_table\">";
$show->display_search_top_tr();
$show->display_candidates();
$show->display_table_down_search();
echo "</div>";
echo "</div>"; //left strip
echo "<div id=\"right_strip\" align=\"center\">";
echo "<div id=\"right_strip_inside\" align=\"center\">";
echo "<div id=\"info_queries\">";
echo "<div id=\"number_records\">";
echo "Records: $show->num_records";
echo "</div>";
echo "</div>";
echo "<div id=\"date_time\">";
echo date ('D:')."<br>";
echo date ('d M Y')."<br>";
echo date ('g:i a');
echo "</div>";
include ('../include/users_online.php');
echo "</div>";
echo "</div>";
include('../include/footer.inc');
footer
<?
echo "<div id=\"footer\">";
echo " ©2007";
echo "</div>";
echo "</div>";
echo "</div>";
echo "</div>";
echo "</div>";
echo "</body>";
echo "</html>";
Looks like IE doesnt see the divs It ends left_strip div after first content_table div
and my 2 content_table divs should be in left_content strip
it doesnt see pagination div neither
my css is
#left_strip {
padding:0 0.6em 0 0.6em; /*top right bottom left*/
width:815px;
float:left;
}
#content_table {
position:relative;
top:15px;
}
and what's weird is that i have the same code in a different file and everything works there the way i wont
Thank You
|