Tengo el siguiente botón:
HTML:
Código HTML:
Ver original
CSS:
Código CSS:
Ver original
.item_btn_4 a{ background-color: #F9A63E; background-image: url(../images/unidad_4.png); background-repeat: no-repeat; background-position: center center; width: 80px; height: 80px; position: absolute; opacity: 100; -webkit-border-radius: 100px; -moz-border-radius: 100px; -o-border-radius: 100px; border-radius: 100px; margin: 88px; float: left; } .item_btn_4 a:hover { background-color: #FBBD71; } .titulo_btn_4{ font-family: Arial; color: #FFF; background-color: #F9A63E; text-align: center; width: 225px; margin-top: 85px; margin-left: -160px; position: absolute; z-index: -9999; opacity: 0; box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5); -webkit-border-radius: 100px; -moz-border-radius: 100px; -o-border-radius: 100px; border-radius: 100px; -webkit-transition: all 1s; -moz-transition: all 1s; -o-transition: all 1s; -ms-transition: all 1s; transition: all 1s; }
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