This is my code but i want the menu and header to touch the menu
Code:
<html>
<head>
<title>Chris McIntosh's Website</title>
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<link rel="stylesheet" type="text/css" href="print.css" media="print" />
</head>
<body>
<table width="100%" height="129">
<td class="noprint">
<?php
include ("http://www.krugferd.net/users/ctechguy/head.html");
?></td>
</table>
<!-- Table for Main Body -->
<table border="0" width="100%" >
<td valign="baseline" align="left" width="90" class="noprint">
<?php
include ("http://www.krugferd.net/users/ctechguy/menu.html");
?>
</td>
<td width="1" bgcolor="lightskyblue" valign="top"> </td>
<td valign="top">
<?php
switch($_GET['id']){
case 'photo':
include 'http://www.krugferd.net/users/ctechguy/pics/photos.php';
break;}
switch($_GET['id']){
case 'home':
include ("http://www.krugferd.net/users/ctechguy/page1body.html");
break;}
?>
<br> <br>
</td>
<td width="1" bgcolor="lightskyblue" valign="top"> </td>
</tr></table>
<table width="100%" border="0">
<tr>
<th scope="col"><?php
include ("http://www.krugferd.net/users/ctechguy/footer.html");
?></th>
</tr>
</table>
</body></html>
Last edited:




