tooltip

Events happening in the community are now at Drupal community events on www.drupal.org.
lorlarz2's picture

Want to add Easy pop-up 'tooltips' on Any Page?

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;

Read more
ica's picture

jquery-tooltip

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/

Read more
Subscribe with RSS Syndicate content