pic with text on mouse over

L

Lisa

When you click on a picture that has a hyperlink to home
page, how do you get a little text to come up?

Is this hotspot?

thanks
Lisa
 
C

chris leeds

one way would to be right click it in FrontPage and select picture
properties. set the alternate display (text) to the label you want and
that's it.
I don't know if I understand the question completely.
 
A

Andrew Murray

Lisa said:
When you click on a picture that has a hyperlink to home
page, how do you get a little text to come up?

Is this hotspot?

thanks
Lisa

no "tooltip"

in the <a href> tag add alt="your text"
 
L

Lisa

Ok when I click on the links in my favourite folder and on
some images on a web; some text appears (not a pop up) and
gives you either the name ie; "home page" or the link
properties.

Thanks
 
K

Kevin Spencer

I believe what you're looking for is the "title" attribute. This attribute
can be applied to many HTML elements in order to have a tooltip appear when
the cursor is hovering over the element. Here is an example of an image tag
with a "title" attribute:

<img src="someurl" alt="something" title="This is a tooltip">

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
Big Things are made up of
Lots of Little Things.
 
Top