Regina said:
Hello Ron,
Well, I have thrown out the idea of using Sothink software. Instead I
have finally made my own menu using the the article you participated
in from
http://www.interlacken.com/winnt/tips/tipshow.aspx?tip=28 It
really does explain everything once you get organized and know the
meanings. If you could look at my site
http://www.dominicursetta.com/
the proplem I am having is when you mouse over the links that do not
have a menu leaf (Home,Pit Crew and Sponsors) the menu leafs do not
disappear. Please help!
Thank you for the article!
Regina
Hi Regina,
I am not Ron but I note that a menu item such as Photos has this
<a style="text-decoration: none" href="javascript:;"
onmouseover="FP_changeProp(/*id*/'photos',0,'visibility','show');
FP_changeProp(/*id*/'photos',0,'style.visibility','visible');
FP_changeProp(/*id*/'news',0,'visibility','hide');
FP_changeProp(/*id*/'news',0,'style.visibility','hidden');
FP_changeProp(/*id*/'contact',0,'visibility','hide');
FP_changeProp(/*id*/'contact',0,'style.visibility','hidden');
FP_changeProp(/*id*/'p2006',0,'visibility','hide');
FP_changeProp(/*id*/'p2006',0,'style.visibility','hidden');
FP_changeProp(/*id*/'p2005',0,'visibility','hide');
FP_changeProp(/*id*/'p2005',0,'style.visibility','hidden');
FP_changeProp(/*id*/'n2006',0,'visibility','hide');
FP_changeProp(/*id*/'n2006',0,'style.visibility','hidden');
FP_changeProp(/*id*/'n2005',0,'visibility','hide');
FP_changeProp(/*id*/'n2005',0,'style.visibility','hidden');
FP_changeProp(/*id*/'gif',0,'visibility','hide');
FP_changeProp(/*id*/'gif',0,'style.visibility','hidden');
FP_changeProp(/*id*/'gif',0,'visibility','show');
FP_changeProp(/*id*/'gif',0,'style.visibility','visible')">
<span style="font-size: 8pt">Photos »</span></a></td>
There are a heck of a lot of things happening onmouseover, but *none*
onmouseout.
Perhaps you need a set of FP_changeProp calls executed onmouseout to remove
the action taken onmouseover
e.g.
onmouseout=onmouseover="FP_changeProp(/*id*/'photos',0,'visibility','hide');;
FP_changeProp(/*id*/'photos',0,'style.visibility','hidden');
.........
Or add some onmouseover="'FP_changeProp( ...... "calls to Home, Pit Crew,
Schedule, Sponsors
I am no expert, but it make sense to me :-D