Hi, I'm making a site and the main page works great (http://dodesign.fh-net.com ). I'm using PHP includes on the page to make it easy to update. However, this page doesn't look as good (http://dodesign.fh-net.com/type/lighthouse.php ). How can I fix it? This is the structure of the files. And this is the code from lighthouse.php <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>doDesign</title> <?php include("../../head.php"); ?> </head> <body> <?php include("../../header.php"); ?> <div id="designs"> <img src="img/designs.png" height="42" width="103" alt="Designs" /> <div id="designpreviews"> <div id="designsleft"> <div class="template"> <img src="img/directory.jpg" height="355" width="327" alt="" class="designpreview" /> <table class="templateinfo"> <tr> <td style="text-align:left;">Category: Directory</td> <td style="text-align:right;">Color: Blue, Orange</td> </tr> <tr> <td style="text-align:left;">Format: .PSD</td> <td style="text-align:right;">Price: $25.00</td> </tr> </table> </div> </div> <div id="designsright"> <div class="template"> <img src="img/lighthouse.jpg" height="355" width="327" alt="" class="designpreview" /><br /> <table class="templateinfo"> <tr> <td style="text-align:left;">Category: Blog </td> <td style="text-align:right;">Color: Blue, Light Brown </td> </tr> <tr> <td style="text-align:left;">Format: .PSD (Two Pages) </td> <td style="text-align:right;">Price: $40.00</td> </tr> </table> </div> </div> </div> </div> <?php include("../../footer.php"); ?> Code (markup):