Frontpage question

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
 
T

Trevor L.

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/
----------------------------------------
 

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