blank
05-15-2006, 01:35 PM
Hey guys, I'm new here, will look forward to posting here more often. I'm interested in ASP.Net, JavaScript and PHP, but my problem today has to do with neither of those, it's a lot more simpler I guess. I'm having problems with nested tables. In other words, although to me it seems as if it's correct, it sure doesn't look correct. Here is my source:
index.htm
<html>
<head>
<title>Jorge Peņa - Blank Denim</title>
<link href="index.css" rel=StyleSheet type="text/css" />
</head>
<body>
<center>
<table width="75%">
<tr>
<td class="block"><center>Jorge Peņa</center></td>
</tr>
<tr>
<td>
<table>
<tr>
<td class="block"><center><a href="index.htm">Home</a></center></td>
</tr>
<tr>
<td class="block"><center><a href="profile.htm">Profile</a></center></td>
</tr>
<tr>
<td class="block"><center><a href="programs.htm">Programs</a></center></td>
</tr>
<tr>
<td class="block"><center><a href="sources.htm">Sources</a></center></td>
</tr>
<tr>
<td class="block"><center><a href="links.htm">Links</a></center></td>
</tr>
</table>
</td>
<td class="block">Finally my frickin site back.</td>
</tr>
</table>
</center>
</body>
</html>
index.css
body {
}
a {
text-decoration: none;
color: blue;
}
a:link {
text-decoration: none;
color: blue;
}
a:visited {
text-decoration: none;
color: blue;
}
a:hover {
text-decoration: none;
color: yellow;
}
.block {
background-color: #F3F3F3;
}
I uploaded my page so you can take a look at what the problem is, here [ www.jorgepena.be ]. Thanks for any help, appreciated.
index.htm
<html>
<head>
<title>Jorge Peņa - Blank Denim</title>
<link href="index.css" rel=StyleSheet type="text/css" />
</head>
<body>
<center>
<table width="75%">
<tr>
<td class="block"><center>Jorge Peņa</center></td>
</tr>
<tr>
<td>
<table>
<tr>
<td class="block"><center><a href="index.htm">Home</a></center></td>
</tr>
<tr>
<td class="block"><center><a href="profile.htm">Profile</a></center></td>
</tr>
<tr>
<td class="block"><center><a href="programs.htm">Programs</a></center></td>
</tr>
<tr>
<td class="block"><center><a href="sources.htm">Sources</a></center></td>
</tr>
<tr>
<td class="block"><center><a href="links.htm">Links</a></center></td>
</tr>
</table>
</td>
<td class="block">Finally my frickin site back.</td>
</tr>
</table>
</center>
</body>
</html>
index.css
body {
}
a {
text-decoration: none;
color: blue;
}
a:link {
text-decoration: none;
color: blue;
}
a:visited {
text-decoration: none;
color: blue;
}
a:hover {
text-decoration: none;
color: yellow;
}
.block {
background-color: #F3F3F3;
}
I uploaded my page so you can take a look at what the problem is, here [ www.jorgepena.be ]. Thanks for any help, appreciated.