Manny said:
On my index page for some reason when I cross my pointer over the
<about us> button, the botton disappears and a red x shows up over
it. The button still goes to the link it suppose to but is acting
funny. I've placed the link below.
Thanks for your time.
Manny
http://www.avilagold.com/index.html
The button About Us has this code inside the <img> tag
onmouseover="FP_swapImg(1,0,/*id*/'img3',/*url*/'button13.jpg')"
onmouseout="FP_swapImg(0,0,/*id*/'img3',/*url*/'images/button12_2.jpg')"
onmousedown="FP_swapImg(1,0,/*id*/'img3',/*url*/'button14.jpg')"
onmouseup="FP_swapImg(0,0,/*id*/'img3',/*url*/'button13.jpg')">
Since the image disappears when you mouseover, then it means there is a
reference to an image that it is not present.
I don't know the function FP_swapImg, but onmouseover refers to
'button13.jpg', so I guess this is the image that is missing.
It is possible that 'button14.jpg' is also missing since a mousedown doesn't
bring up another image
I think button12_2.jpg is present as it comes back when you mouseout
Check what images are present on the
http://www.avilagold.com/ directory
Or just change the code to read:
onmouseover="FP_swapImg(1,0,/*id*/'img3',/*url*/'button12-2.jpg')"
onmouseout="FP_swapImg(0,0,/*id*/'img3',/*url*/'images/button12_2.jpg')"
onmousedown="FP_swapImg(1,0,/*id*/'img3',/*url*/'button12_2.jpg')"
onmouseup="FP_swapImg(0,0,/*id*/'img3',/*url*/'button12_2.jpg')"
Then the button won't change no matter what you do, but this isn't
consistent with the code on the other buttons