Forum Moderators: not2easy
All of my CSS:
<snip>
Relevant CSS:
.nodecoration { text-decoration: none; }
div.tooltip a span { display: none; }
div.tooltip a:hover span {
display: block;
width: auto;
top: 1em;
right: 1em;
padding: .5em;
color: #000;
background-color: #CC9;
z-index: 1;
position: relative;
border: 1px solid #000;
}
Relevant HTML:
<div class="tooltip">
<h2>Announcements</h2>
<h3>Announcement Title</h3>
<em>First Sentence. Contact <a href="http://www.ccshoreline.org/contactform.php?">Contact Person</a>.
<a href="http://www.ccshoreline.org/?announceid=55" class="nodecoration">More>><span>Announcement full information...</span></a>
</em></div>
[edited by: Woz at 6:45 am (utc) on Mar. 21, 2004]
[edit reason] no URLs please - TOS#13 [/edit]
It is an IE Bug .. not triggered often..
If you search for "pure CSS Popups Bug" you'll find more about it.
Note just changing the color on the a:hover rule may not be enough to bring back the popup, but there are many things that will
div.tooltip a:hover {
text-indent: 0;
}
worked for me..
Suzy
I found the old post where this bug was discovered and a list of the defaults that can be used.
Pure CSS Popups IE Bug [webmasterworld.com]
I just like text-indent: 0; (default) as it very rarely affects anything else, but it's whatever you remember really I suppose ;)
Oh and although that post says the bug is in IE6.. I have since confirmed that versions 5, 5+ and 6 IE/Win demonstrate the same behaviour..
Suzy