Ver Mensaje Individual
  #3 (permalink)  
Antiguo 21/08/2009, 08:02
Avatar de cristian_cena
cristian_cena
Colaborador
 
Fecha de Ingreso: junio-2009
Mensajes: 2.244
Antigüedad: 14 años, 10 meses
Puntos: 269
Respuesta: Problema con efecto

Cambia esto:

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
left: 230px; /*position where enlarged image should offset horizontally */
z-index: 50;
top: 50px;
}

Por esto:

.thumbnail:hover span{
visibility: visible;
z-index:50;
left: -130px; /*izquierda: juega con este valor, cuanto más negativo el valor más a la izquierda se posicionara tu imagen*/
top: 50px; /*arriba: juega con este valor para llevar más hacia arriba o más hacia abajo la imagen */
/*puedes jugar con right y bottom también*/
}

_________

saludos