View Single Post
  #7 (permalink)  
Old Mar 7th, 2008, 15:59
gotgotneed gotgotneed is offline
New Member
Join Date: Feb 2008
Location: London
Age: 33
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How To Create Rollovers in iWeb Easy!

I had similar problems. Try removing the inverted commas and replace with apostrophes, so instead of...

onmouseover="rollover1.src="image/route.png"';"
onmouseout="rollover1.src="image/route2.png"';">

you have...

onmouseover="rollover1.src='image/route.png';"
onmouseout="rollover1.src='image/route2.png';">

Also, try removing the inverted commas before name...

<img src="route_files/route2.png" "name="rollover1" alt="" style="border: none; height: 225px; width: 300px; " />

so it's just...

<img src="route_files/route2.png" name="rollover1" alt="" style="border: none; height: 225px; width: 300px; " />
Reply With Quote