I have a fixed-position div containing an image. I need that image to disappear on mouseover (that mouseover can be the image or the div itself, since the image is the only thing in the div), and reappear on mouseout. Using FrontPage, I have tried:
CODE
<div style=[stuff]onmouseout="FP_changePropRestore()" onmouseover="FP_changeProp(/*id*/'img1',1,'style.display','none')">.
I have also tried that same code with "visibility:hidden" instead of "display:none". When I use this code, I get a "flicker" effect when the mouse is moved over the div; I assume this is caused by the disappearance of the image triggering the mouseout condition.So, any suggestions? Please remember, I'm a newbie at web design, so be kind and take it step by step for me. Your help is greatly appreciated!