FP2003: Hover text

T

Tom

FrontPage 2003, all MS updates

Is there a way to create/setup hover text under FrontPage 2003?
What I'd like to do is to have the text, such as "About Us", enlarge and/or
change color as the mouse hovers over the text. Once the mouse moves off the
text ("About Us") then the text would revert back to normal font and color.
I reviewed the Help file but it referred to hover buttons, not hover text.
[Note: I'm open to other ideas for 'noticing' the text link text.]
TIA!
Tom
 
T

Tom [Pepper] Willett

You can look for scripts at www.dynamicdrive.com

--
Tom [Pepper] Willett
Microsoft MVP - FrontPage
"You're a daisy if you do!"
---
FrontPage Support:
http://www.frontpagemvps.com/
===
: FrontPage 2003, all MS updates
:
: Is there a way to create/setup hover text under FrontPage 2003?
: What I'd like to do is to have the text, such as "About Us", enlarge
and/or
: change color as the mouse hovers over the text. Once the mouse moves off
the
: text ("About Us") then the text would revert back to normal font and
color.
: I reviewed the Help file but it referred to hover buttons, not hover text.
: [Note: I'm open to other ideas for 'noticing' the text link text.]
: TIA!
: Tom
 
M

Mike Mueller

CSS hover is a cheap way to do this- the code below will have a page that
will reverse the colors when you hover over a <span>. This can be done over
a paragraph or division also, but I chose span as it looks a little cleaner
inline than with a block element


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<style type="text/css">
body {color: black; background-color:white}
span:hover {color: white; background-color:black}
</style>
</head>

<body>
<p><span>The big blue bouncing beach ball biffed a bikinied
bimbo</span></p>
<p><span>Yucky yams make me yak</span></p>
</body>
</html>

*************************************
 

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

Top