Picture hover text?

G

Guest

In Frontpage 2000, is there a way to make text appear over a pictgure when
the viewer puts his cursor on it?
 
T

Trevor Lawrence

Mike S said:
In Frontpage 2000, is there a way to make text appear over a pictgure when
the viewer puts his cursor on it?

Try adding alt="some text here" into the <img> tag
e.g. <img src="myimage.jpg" alt="some text here" />

This can be done in HTML view. At least I think this is what it was called
in FP2000. In FP2003, it is Code view - this is one of the tabs at the
bottom of the page
 
M

Mike Mueller

Exactly.

Specifically, the ALT attribute for an image is actually used as the
placeholder text for an image when not loaded. It is also what a screen
reader uses to tell the visually impaired what the image is. IE also will
generate the tooltip which you are seeking.
The TITLE attribute; on the other hand, is use for the tooltip in the other
browsers. IE will also display as the tooltip rather than the ALT
information. The TITLE attribute can also be used for most other tags (<p>
<span> <div> etc) with the same results
 
T

Trevor Lawrence

Mike Mueller said:
Exactly.

Specifically, the ALT attribute for an image is actually used as the
placeholder text for an image when not loaded. It is also what a screen
reader uses to tell the visually impaired what the image is. IE also will
generate the tooltip which you are seeking.
The TITLE attribute; on the other hand, is use for the tooltip in the
other browsers. IE will also display as the tooltip rather than the ALT
information. The TITLE attribute can also be used for most other tags (<p>
<span> <div> etc) with the same results

Mike, Ron
Many thanks for the corrections.

When I saw the post, I THOUGHT "title" but I typed "alt". Talk about your
fingers being disconnected from your brain. Or perhaps my brain was on
holiday !!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top