Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
|
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
Thread Tools |
12-25-2008, 03:14 PM | #1 |
Confirmed User
Industry Role:
Join Date: Aug 2003
Location: Canada
Posts: 2,310
|
CSS Tooltip Problem...
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? Code:
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; } |
12-25-2008, 04:49 PM | #2 |
Confirmed User
Join Date: May 2008
Location: Charlotte, NC
Posts: 342
|
Link us to the page with this on it.
|
12-25-2008, 05:25 PM | #3 |
Confirmed User
Industry Role:
Join Date: Aug 2003
Location: Canada
Posts: 2,310
|
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... |
12-25-2008, 05:57 PM | #4 |
Confirmed User
Industry Role:
Join Date: Aug 2003
Location: Canada
Posts: 2,310
|
nevermind, found a different working code... thx
|
12-25-2008, 07:17 PM | #5 |
Too lazy to set a custom title
Industry Role:
Join Date: Aug 2002
Posts: 54,890
|
__________________
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence. WP Tube Themes |
12-25-2008, 08:14 PM | #6 | |
Confirmed User
Join Date: May 2005
Posts: 2,737
|
Quote:
|
|