Ver Mensaje Individual
  #1 (permalink)  
Antiguo 16/03/2014, 10:46
Avatar de bathory84
bathory84
 
Fecha de Ingreso: junio-2010
Ubicación: Venezuela
Mensajes: 257
Antigüedad: 14 años, 7 meses
Puntos: 1
Menú Simple CSS

Hola que tal muchachos yo tengo un Menú Flash pero ahora estoy tratando de hacerlo en CSS simple pero no puedo lograrlo pues no es mi fuerte. Quisiera que el Menú quedara como la siguiente Imagen:



Todavía no puedo lograr que el :hover sombreé todo el cuadro (columna) asi como les dejé la imagen de ejemplo (Boton Servicios), esos fondos azules son imagenes. Solamente sombrea de azul las Letras y no me sirve así.

AQUI LES DEJO EL HTML DEL MENÚ:

Código HTML:
Ver original
  1. <table width="964" height="40" border="0" class="fondotabla">
  2.   <tr>
  3.  
  4.    
  5.     <th class="izquierda" scope="col">
  6.     <a href="index.html">    Principal    </th>
  7.    
  8.     <th class="centro" scope="col">
  9.     <a href="nosotros.html">    Nosotros    </th>
  10.    
  11.     <th class="centro" scope="col">
  12.     <a href="servicios.html">    Servicios    </th>
  13.    
  14.     <th class="centro" scope="col">
  15.     <a href="presupuestos.html">    Presupuestos    </th>
  16.    
  17.     <th class="centro" scope="col">
  18.     <a href="testimonios.html">    Testimonios    </th>
  19.    
  20.     <th class="derecha" scope="col">
  21.     <a href="contactos.html">    Contactos    </th>
  22.    
  23.    
  24.   </tr>

AQUI LES DEJO EL CSS DEL BOTÓN "PRINCIPAL":

Código CSS:
Ver original
  1. .izquierda {
  2.     height: 40px;
  3.     width: 162px;
  4.     font-family: "Arial";
  5.     font-weight: bold;
  6.     font-style: italic;
  7.     font-size: 20px;
  8.     color: #000;
  9.     vertical-align: middle;
  10. }
  11.  
  12.  
  13. .izquierda :hover{
  14.     background-image: url(../images/izquierda.png);
  15.     width: 162px;
  16.     height: 40px;
  17.     font-family: "Arial";
  18.     font-weight: bold;
  19.     font-style: italic;
  20.     font-size: 20px;
  21.     color: #FFF;
  22.     vertical-align: middle;
  23. }

Por favor ayudenme a terminarlo, es para mi pagina personal de trabajo.