font or image swap

P

Pam

Using FP 2003 is there an easy way to swap the font color or swap an image
on mouseover. I tried the Behaviors menu to swap an image and it swaps it
but doesn't swap it back again. It seems to me there was simply a menu
choice to do these on earlier versions? I have some add-ins that do this,
but am trying to show someone else how to do this with just the FP program.
Thanks,
Pam
 
S

Steve Easton

With the image swap you need to use onmouseout to swap the image back.

For text color changes use CSS.

a.link {
background-color: transparent;
color: #0000FF;
text-decoration: none;
}
a:visited {
background-color: transparent;
color: teal;
text-decoration: none;
}
a:active{
background-color: transparent;
color: Blue;
text-decoration: none;
}
a:hover {
background-color: transparent;
color: #FF0000;
text-decoration: underline;
}




--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
P

Pam

Hi Steve,
That makes sense, but isn't there a menu command within FP that I can use.
It seems that there used to be. I think it used to be in the Dynamic
Content or Web Component?????
Thanks again,
Pam
 
M

Murray

Automatic restore.

--
Murray
============

Pam said:
Hi Steve,
That makes sense, but isn't there a menu command within FP that I can use.
It seems that there used to be. I think it used to be in the Dynamic
Content or Web Component?????
Thanks again,
Pam
 

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