Try this:
HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Co-Design</title>
<style type="text/css">
.MASTERTABLE {
border-width: 1px;
border-color: #000000;
}
td {
border: 0;
}
A:link {
font-color: #B4E4ED;
font-size: 15px;
font-family: "Copperplate Gothic Bold";
}
a:visited {
font-color: #B4E4ED;
font-size: 15px;
font-family: "Copperplate Gothic Bold";
}
A:hover {
font-color: #C70000;
font-size: 15px;
font-family: "Copperplate Gothic Bold";
}
</style>
</head>
<body>
<center>
<table class="mastertable" border="" width="600" id="master">
<tr>
<td border="0" id="Header">
</td>
</tr>
<tr>
<td id="MainBody">
<table width="100%">
<tr>
<td width="150" id="LeftMenu">
<!-- MENU -->
<a href="#">Test</a>
<!-- End MENU -->
</td>
<td id="CenterContent">
<table cellspacing="0" width="100%">
<tr>
<td background="Images/top_left_curve.jpg" width="15" height="25">
</td>
<td background="Images/top_line.jpg" valign="top" width="315">
</td>
</tr>
<tr>
<td background="Images/left_Menu_line.jpg" width="15">
<td id="Content">
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</center>
</body>
</html>
The problem (at least what i saw) was that it was in <!-- --> tags meaning the whole thing was a big comment, and it's all on one line?
Last edited by log2; 01-17-2005 at 09:03 AM..
|