a:hover span IE 6 & 7 issue
am 16.04.2008 23:49:19 von Jeff VaccaroPlease visit the following site and hover over the information icon
(top right hand side):
http://www.godsurfer.com/details.php?id=297
In FF the text from the description does not show through the
information box that displays (when you mouse over the info icon).
In IE 6 * 7 it does...
Here is my CSS snipet:
#detailsHelp {
color: #1A315F;
}
#detailsHelp a {
text-decoration: none;
background:#fffff;
}
#detailsHelp a:hover {
background:#ffffff;
position: relative;
}
#detailsHelp a span {
background:#ffffff;
display: none;
}
#detailsHelp a:hover span {
z-index: 1001;
display: block;
position: absolute; top: 10px; left: -260px;
/* formatting only styles */
padding: 5px; margin: 10px;
background: #eee; border: 1px dashed #FEB14C;
width: 250px;
color: #1A315F;
font-size:small;
font-weight: bold;
text-align:left;
/* end formatting */
}
Here is my HTML:
Any and all help is appreciated!
Thanks,
Jeff