Hyperlink Text

L

Larry

How do I make Hyperlink text change color when the cursor is hovered over
the text? I am using FP2002.
Thank You,
Larry
 
S

Steve Easton

It is done with CSS.

The following will make the links
green and then turn red when hovered
with no underlines.
Place it between the head tags.

<style>
a {
text-decoration: none;
}
a:link {
color: green;
text-decoration: none;
}
a:hover {
color: red;
text-decoration: none;
}
</style>


hth
 
J

Jim Buyens

-----Original Message-----
How do I make Hyperlink text change color when the cursor
is hovered over the text? I am using FP2002.

Browse:

http://www.interlacken.com/winnt/tips/tipshow.aspx?tip=23

Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*------------------------------------------------------*
|\----------------------------------------------------/|
|| Microsoft Office FrontPage 2003 Inside Out ||
|| Microsoft FrontPage Version 2002 Inside Out ||
|| Web Database Development Step by Step .NET Edition ||
|| Troubleshooting Microsoft FrontPage 2002 ||
|| Faster Smarter Beginning Programming ||
|| (All from Microsoft Press) ||
|/----------------------------------------------------\|
*------------------------------------------------------*
 
L

Lisa

(If you are talking about the text links; this is how I
did it.)

page properties
background
enable rollover
 
Top