Phill Pafford
12-17-2007, 03:15 PM
Hi,
Need some help again :-)
I have a tooltip that on hover shows some info. In FF works great, but in IE 6 & 7 the tooltip goes under other elements and does how correctly.
Here is the CSS
a.tooltip
{
color:#174891;
text-decoration:none;
}
a.tooltip:hover
{
text-decoration:underline;
position:relative;
}
a.tooltip span
{
display:none;
}
a.tooltip:hover span
{
position:absolute;
z-index:1;
top:35px;
left:0px;
width:150px;
display:block;
padding:10px;
background-color:#FFFFCC;
border:2px solid #C0C097;
text-align:left;
}
.tooltip b
{
position:absolute;
width:26px;
height:15px;
top:-15px;
left:20px;
background-image:url(../images/tooltiparrow.gif);
font-size:1px;
}
.tooltip strong
{
color:#333333;
font:100% arial,helvetica,clean,sans-serif;
font-size:15px;
font-weight:bold;
}
Here is the HTML
<a class='tooltip' href='http://localhost/sandbox/testLinks.php'>LINK TITLE
<span><b></b><strong>LINK SUB-TITLE</strong><br /><br />LINK DESCRIPTION, MORE DESCRIPTION</span>
</a>
I have also attached some pics, the under pic is not what I want. The over pic is.
Thanks is advance
--Phill
Need some help again :-)
I have a tooltip that on hover shows some info. In FF works great, but in IE 6 & 7 the tooltip goes under other elements and does how correctly.
Here is the CSS
a.tooltip
{
color:#174891;
text-decoration:none;
}
a.tooltip:hover
{
text-decoration:underline;
position:relative;
}
a.tooltip span
{
display:none;
}
a.tooltip:hover span
{
position:absolute;
z-index:1;
top:35px;
left:0px;
width:150px;
display:block;
padding:10px;
background-color:#FFFFCC;
border:2px solid #C0C097;
text-align:left;
}
.tooltip b
{
position:absolute;
width:26px;
height:15px;
top:-15px;
left:20px;
background-image:url(../images/tooltiparrow.gif);
font-size:1px;
}
.tooltip strong
{
color:#333333;
font:100% arial,helvetica,clean,sans-serif;
font-size:15px;
font-weight:bold;
}
Here is the HTML
<a class='tooltip' href='http://localhost/sandbox/testLinks.php'>LINK TITLE
<span><b></b><strong>LINK SUB-TITLE</strong><br /><br />LINK DESCRIPTION, MORE DESCRIPTION</span>
</a>
I have also attached some pics, the under pic is not what I want. The over pic is.
Thanks is advance
--Phill