I have a problem, I have this tooltip scripting...
The tooltip goes at the back of the next image.
thanks guys
here is the script
a.info{
position:relative; /*this is the key*/
z-index:24; background-color:#FFF;
color:#000;
text-decoration:none}
a.info:hover{z-index:25;
background-color:#FFFFFF;
}
a.info span{display: none}
a.info:hover span{ /*the span will display just on :hover state*/
display:block;
position:absolute;
padding:2px;
top:0em; left:1em; width:15em;
border:1px solid #0cf;
background-color:#cff; color:#000;
text-align: left;
font-family:Tahoma, Verdana, Arial;
font-size:12px;
}
use image as link wrapped in a DIV!
thanks