Front Page 2000 Mouse Rollover

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I was wondering how to create a text rollover, I can get it with picture
swapping, but I want to do change text as I rollover It with the mouse.
Please Reply.
 
You would need to use CSS to do that. I'm not sure how to get at that in
FP2000, but do a search for "pseudo-class" in your Help and see if it tells
you.

Any text link at any time can have a single 'state', e.g., link, visited,
hover, active, and focus. A link is a link until it has been hovered over,
when it adopts the 'hover' state. When you click it, it adopts first the
'active' state, and then the 'visited' state. When you tab to it, it shows
the 'focus' state. Using CSS allows you to define a different style (e.g.,
color, background-color, border, size, weight, etc.) for each of these
states so that you get the 'rollover' effect.
 
Back
Top