G Guest Oct 22, 2005 #1 How do you produce a message which appears when you hover over a word such as happens with footnotes in Word? I use FrontPage 2003.
How do you produce a message which appears when you hover over a word such as happens with footnotes in Word? I use FrontPage 2003.
S Steve Easton Oct 22, 2005 #2 It can be done with either an acronym tag or a span and title tag. Here's the span and title tag version: <span title="This is the text that displays when TEXT is hovered.">TEXT</span> -- Steve Easton Microsoft MVP FrontPage 95isalive This site is best viewed............ ........................with a computer
It can be done with either an acronym tag or a span and title tag. Here's the span and title tag version: <span title="This is the text that displays when TEXT is hovered.">TEXT</span> -- Steve Easton Microsoft MVP FrontPage 95isalive This site is best viewed............ ........................with a computer
C clintonG Oct 22, 2005 #3 The following is more useful than Steve's suggestion... <span class="HelpToolTip" title="Universal Resource Locator, i.e. http://example.com/ etc.">URL</span> // Put this class in your CSS file... ..HelpToolTip { border-bottom: 1px dotted #585880; cursor: help; } If that is not what you meant use the following search terms... // the 'official' term fragment indentifiers // the 'common' term jump tags <%= Clinton Gallagher METROmilwaukee (sm) "A Regional Information Service" NET csgallagher AT metromilwaukee.com URL http://metromilwaukee.com/ URL http://clintongallagher.metromilwaukee.com/
The following is more useful than Steve's suggestion... <span class="HelpToolTip" title="Universal Resource Locator, i.e. http://example.com/ etc.">URL</span> // Put this class in your CSS file... ..HelpToolTip { border-bottom: 1px dotted #585880; cursor: help; } If that is not what you meant use the following search terms... // the 'official' term fragment indentifiers // the 'common' term jump tags <%= Clinton Gallagher METROmilwaukee (sm) "A Regional Information Service" NET csgallagher AT metromilwaukee.com URL http://metromilwaukee.com/ URL http://clintongallagher.metromilwaukee.com/