Alright here's what I have so far (may be a bit slow to connect as it's on my local machine) http://70.15.139.117:8180/quake/ I'm still working on getting rid of the tables, got it mainly done, while I'm working on that though the thing is he has a header, three columns, and a footer. I'm trying to preserve this (I know the code and page are currently pretty convulated, but I'm working on removing all the tables before I go through it further) for him. What I'm working with currently though is the main body I have four divs for this, named main_body, left_column, main_column, right_column where main_body is just a container for the three containers. The current CSS for those four are:
Code:
div#main_body {width:2000px;}
div#left_column {float:left;}
div#main_column {}
div#right_column {float:right;}
I'm not sure if it's currently fixable (I still have some TDs and TRs in the right column I'm removing) but I'd like it to be where the left side of the center column is even with the right side of the left column the whole way down (currently it moves to the left of the page after the left column). I'd like it to match up with the right column too in the end. I really don't care about how it looks in IE6, I'm trying to get people to switch to FF anyway so I don't need IE6 hacks.
__________________
PHP Code:
<?php echo "Hello World"; ?>
HTML Code:
<html><head><title>Hello World</title></head><body><p>Hello World</p></body></html>
|