Ver Mensaje Individual
  #6 (permalink)  
Antiguo 28/06/2006, 21:59
eddygonzalez2000
 
Fecha de Ingreso: abril-2006
Mensajes: 17
Antigüedad: 18 años
Puntos: 0
talvez aasi

yo lo que hice una vez fue que dentro de celdas le cambie el color al fondo asi
.navigation{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 16px;
font-style: normal;
font-weight: bold;
color: #FFFFFF;
text-decoration: none;
background-color:#666666 ;
display:block;
padding:8px;
width:140;

}
.navigation:hover{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 16px;
font-style: normal;
font-weight: bold;
color: #FFFFFF;
text-decoration: none;
background-color:#333333 ;
display:block;
padding:8px;
width:140;


}


y el html

<table width="750" border="0">
<tr>
<td width="145">

<h1 class="navigation" > <a target="frame" href="contenido.html"> HOME </a> </h1> </td>
<td width="145">
<h1 class="navigation"><a target="frame" href="ingreso.html"> FORMULARIO </a> </h1> </td>
<td width="145">

<h1 class="navigation"><a target="frame" href="web.html" > DEVELOPER </a></h1> </td>
<td width="145">
<h1 class="navigation"><a target="frame" href="links.html"> LINKS </a></h1> </td>
<td width="148">
<h1 class="navigation"><a target="frame" href="descargas.html"> DESCARGAS </a> </h1> </td>

</tr>
</table>

no se si es eso lo que queres.