Ver Mensaje Individual
  #1 (permalink)  
Antiguo 17/01/2014, 06:47
Avatar de ceaped
ceaped
 
Fecha de Ingreso: febrero-2004
Mensajes: 2.185
Antigüedad: 20 años, 2 meses
Puntos: 9
Pregunta Botón con toolTip abre toopTip en over

Buenos días
Tengo el siguiente botón:

HTML:
Código HTML:
Ver original
  1. <div class="item_btn_1">
  2.     <a href="unidad_1.html">
  3.     <div class="titulo_btn_1">Unidad 1</div>
  4. </a></div>

CSS:
Código CSS:
Ver original
  1. .item_btn_4 a{
  2.     background-color: #F9A63E;
  3.     background-image: url(../images/unidad_4.png);
  4.     background-repeat: no-repeat;
  5.     background-position: center center;
  6.     width: 80px;
  7.     height: 80px;
  8.     position: absolute;
  9.     opacity: 100;
  10.     -webkit-border-radius: 100px;
  11.     -moz-border-radius: 100px;
  12.     -o-border-radius: 100px;
  13.     border-radius: 100px;
  14.     margin: 88px;
  15.     float: left;
  16.     }
  17.  
  18. .item_btn_4 a:hover {
  19.     background-color: #FBBD71;
  20.     }
  21.  
  22.  
  23. .titulo_btn_4{
  24.     font-family: Arial;
  25.     color: #FFF;
  26.     background-color: #F9A63E;
  27.     text-align: center;
  28.     width: 225px;
  29.     margin-top: 85px;
  30.     margin-left: -160px;
  31.     position: absolute;
  32.     z-index: -9999;
  33.     opacity: 0;
  34.     box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
  35.     -webkit-border-radius: 100px;
  36.     -moz-border-radius: 100px;
  37.     -o-border-radius: 100px;
  38.     border-radius: 100px;
  39.     -webkit-transition: all 1s;
  40.     -moz-transition: all 1s;
  41.     -o-transition: all 1s;
  42.     -ms-transition: all 1s;
  43.     transition: all 1s;
  44.     }

Cuando paso el puntero sobre el área que se abre el toolTip (titulo_btn_4) se abre directamente el toolTip, cuando sólo se debería abrir cuando paso el puntero sobre el botón (item_btn_4). Osea queda como zona activa el título.

¡Cómo hago para que no quede activo el título toolTip y que sólo se abra cuando pase el puntero por el botón?

Gracias por su ayuda
__________________
Diseñador Gráfico publicitario