eMonk Posted December 25, 2008 Share Posted December 25, 2008 Screenshot from Internet Explorer 7 - tooltip displays behind thumbs, why isn't it showing up infront like firefox? Screenshot from Firefox 2 - tooltip displays infront of thumbs, but why is it position down further? a.tip { position: relative; } a.tip span { display: none; position: absolute; top: 95px; left: -17px; width: 125px; padding: 5px; z-index: 100; background: #000000; text-align: center; color: #FFFFFF; -moz-border-radius: 5px; /* this works only in camino/firefox */ -webkit-border-radius: 5px; /* this is just for Safari */ } a:hover.tip { font-size: 99%; /* this is just for IE */ } a:hover.tip span { display: block; } any ideas? Link to comment https://forums.phpfreaks.com/topic/138413-solved-css-tooltip-problem/ Share on other sites More sharing options...
eMonk Posted December 26, 2008 Author Share Posted December 26, 2008 Here's a working example : http://www.munkgalleries.com/css/tooltip/example.php z-index is set to "100" so it *should* be displaying ontop of everything else like firefox. i'm not using a z-index greater then 100... Link to comment https://forums.phpfreaks.com/topic/138413-solved-css-tooltip-problem/#findComment-723741 Share on other sites More sharing options...
eMonk Posted December 26, 2008 Author Share Posted December 26, 2008 nevermind, found a different working code... thx Link to comment https://forums.phpfreaks.com/topic/138413-solved-css-tooltip-problem/#findComment-723748 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.