Quote:
|
Originally Posted by Jazzee
Using tables gives you less control over layout. If I design a site with tables, then later decide I want to move the nav from the left to the right, I would have to change the table to do it. If I used no tables, I could easily move it from the left to the right by simply changing one css file.
|
i accomplish this by using php includes on all my pages. like this:
template:
<?php include("header.html") ?>
<p>content</p>
<?php include("footer.html") ?>
this way i can go back and change the table layout in my header file and the whole site is changed.
not to say that i don't appreciate what css can do...
regards,
steve