Navigation Button "Tip" text

A

Andy

Hi;

Using FP2000.

How do You add "Tip" text to the navigation buttons and hyperlinks?

Meaning when the pointer is over navigation button "A" this would appear
"Click here to go to page A."
When the pointer is over navigation button "B" this would appear "Click here
to go to page B."

Thank You.

Andy
 
R

Ronx

If you are using the FrontPage navigation components, you can't.
If you are using your own navigation links, then in code view, add a
title attribute:
Example:

<a href="mypage.htm" title="Click here to go to page A"><img
src="buttonA.gif" alt="Click here to go to page A" width="120"
height="25"></a>

Note the alt attribute is required for accessibility, but will not be
displayed if the image is visible (except in IE with default settings).
The title attribute will be displayed in all browsers (except NN4).
 
A

Andy

Ronx;

Thank You.

Andy


Ronx said:
If you are using the FrontPage navigation components, you can't.
If you are using your own navigation links, then in code view, add a title
attribute:
Example:

<a href="mypage.htm" title="Click here to go to page A"><img
src="buttonA.gif" alt="Click here to go to page A" width="120"
height="25"></a>

Note the alt attribute is required for accessibility, but will not be
displayed if the image is visible (except in IE with default settings).
The title attribute will be displayed in all browsers (except NN4).
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
FrontPage Support: http://www.frontpagemvps.com/
http://www.rxs-enterprises.org/fp
 
Top