Frontpage question

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

Guest

I have two images. I want the none hover image to show one image and the
other hover image to show the other image. Does Frontpage 2003 or the new
version allow this to be done?

Thanks, HLower
 
HLower said:
I have two images. I want the none hover image to show one image and
the other hover image to show the other image. Does Frontpage 2003 or
the new version allow this to be done?

Thanks, HLower

Yes, it very easy

Try this code
<html>
<head></head>
<body>
<img src="image1.jpg"
onmouseover="this.src='image2.jpg'"
onmouseout ="this.src='image1.jpg'" />
</body>
</html>

You can copy and paste this code into Code view in FP2003. Amend the image
names accordingly
--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
----------------------------------------
 
Back
Top