Ah. No me acordaba. Yo te depuré el último ejemplo, que ya andaba, pero era cualquier cosa menos prolijo.
¿Qué problema tenés con la tabla? Habrá que hacer algún ajuste de formato, pero tendría que andar igual.
Edición:
Para que vamos a andar con vueltas. Los dos sabemos que en una tabla anda perfectamente.
Código:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<style type="text/css">
#menu {
padding: 0;
margin: 0;
width: 100%;
font-family: verdana, geneva, sans-serif;
}
#menu a {
display: block;
margin: 0;
font-size: 16px;
width: 10em;
color: #000000;
text-decoration: none;
padding: 7px 12px;
background-color: #d0e0ed;
}
#menu #current, #menu a:hover {
font-weight: bold;
background-color: #fa7200;
}
</style>
</head>
<body>
<table id="menu">
<tr>
<td><a href="partida_agregar.php" id="current">Partida</a></td>
</tr>
<tr>
<td><a href="proveedor.php">Proveedor</a></td>
</tr>
<tr>
<td><a href="hospital.php">Hospital</a></td>
</tr>
<tr>
<td><a href="orden1.php">Orden</a></td>
</tr>
<tr>
<td><a href="rrappyd.php">Remision Rappyd</a></td>
</tr>
<tr>
<td><a href="factura.php">Factura</a></td>
</tr>
<tr>
<td><a href="reporte/listareportes.php">Reportes</a></td>
</tr>
</table>
</body>
</html>