Ver Mensaje Individual
  #9 (permalink)  
Antiguo 08/12/2012, 11:13
Avatar de Bandit
Bandit
Moderador
 
Fecha de Ingreso: julio-2003
Ubicación: Lima - Perú
Mensajes: 16.726
Antigüedad: 20 años, 10 meses
Puntos: 406
Respuesta: a:hover me falla en menu

En vez de usar una imagen como background de tu botón, utiliza éste código:
Código CSS:
Ver original
  1. li.consulta{
  2.   background-image: linear-gradient(top, #015678 49%, #1AA2EB 84%);
  3.   background-image: -o-linear-gradient(top, #015678 49%, #1AA2EB 84%);
  4.   background-image: -moz-linear-gradient(top, #015678 49%, #1AA2EB 84%);
  5.   background-image: -webkit-linear-gradient(top, #015678 49%, #1AA2EB 84%);
  6.   background-image: -ms-linear-gradient(top, #015678 49%, #1AA2EB 84%);
  7.   display:block;
  8.   height:49px;
  9.   text-align: center;
  10.   width:226px;
  11.   background-image: -webkit-gradient(
  12.    linear,
  13.    left top,
  14.    left bottom,
  15.    color-stop(0.49, #015678),
  16.    color-stop(0.84, #1AA2EB);
  17.   )
  18.  }
  19.  .consulta a{
  20.   color: #FFF;
  21.   font-weight: bold;
  22.   text-align: center;
  23.   text-decoration: none;
  24.  }
  25.  .consulta a:hover {
  26.   display: block;
  27.   width:226px;
  28.   height:49px;
  29.   background-color:#013d65;
  30. }
Espero haberte sido de ayuda.
__________________
Bandit.
Si no sabes estudia y si sabes enseña.
http://www.banditwebdesign.com/