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;
How to tie a CCK (radio select) field and a MENU together programatically?
Hello,
Looking into writing a custom trigger->action module.
But first I wanted to check if this has already been done.
Basically I have Panels which read the arg0 variable in the URL to call up Nodes that have a drop-down CCK field that matches the arg0 passed to it.
What I am missing, is a way for a MENU item to be automatically created at the same time [and with the same identifier] as a value in a radio-select field for Page_Area.
Read more