View Single Post
Old 09-08-2004, 02:02 PM   #9 (permalink)
se4b4ss
Inactive
 
se4b4ss's Avatar
 
Join Date: 06-10-04
Posts: 205
iTrader: 0 / 0%
Latest Blog:
None

se4b4ss is on the right pathse4b4ss is on the right pathse4b4ss is on the right path
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
se4b4ss is offline   Reply With Quote