Want to add Easy pop-up 'tooltips' on Any Page?
Posted by lorlarz2 on May 25, 2012 at 3:00pm
Easiest way to have pop-up "tooltips" ANYWHERE.
Procedure to do it:
- Find the Drupal folder with your theme's .info file and
add stylesheets[all][] = mytooltip.css (under other similar lines) -
In Notepad (or any raw text editor) make the following file :
span.tooltip span {display:none;
}
span.tooltip:hover span
{
display:inline;
position:absolute;
background:#FFFF99;
border:1px solid silver;
color:maroon;
width:200px;
margin-top:20px;
margin-left:-5px;
font-size:smaller;
line-height:1em;
jquery-tooltip
Posted by ica on October 6, 2006 at 8:30am
I just stumbled upon this jquery tooltip script thought someone might interested
http://codylindley.com/Javascript/264/jtip-a-jquery-tool-tip
demo
http://www.codylindley.com/blogstuff/js/jtip/
