Log in

View Full Version : Need a drop down menu that allows...



Jon101
04-19-2008, 06:39 PM
Hello - I need a drop down menu that allows the use of image rollover as well.

I am currently using the anylink css drop down but for some reason it will not permit my roll overs to work properly.

i have that running on : http://www.buildnclick.com/indexnewnav.html

Maybe you can figure out why that isn't working, but i cant.

It will roll the images over, but not back on the Mouseout function.

(if this counts as multiple posting, sorry)
Thanks!
Jon

ddadmin
04-20-2008, 07:33 AM
The script will override any onMouseout event inserted into the anchor links, yes. You can get around this in your case by changing the code:


function delayhidemenu(){
delayhide=setTimeout("dropmenuobj.style.visibility='hidden';",disappeardelay)
}

inside anylink.js to:


function delayhidemenu(){
MM_swapImgRestore()
delayhide=setTimeout("dropmenuobj.style.visibility='hidden';",disappeardelay)
}

Assuming the code in red is what you want to run onMouseout of the anchor links.

BTW, please note that your page is currently in violation of our usage terms, since the credit notice doesn't appear inline on the page. Please reinstate the credit notice: http://www.dynamicdrive.com/notice.htm

Jon101
04-21-2008, 02:37 PM
Thanks much for the help, i will go and see if i can work it out with your resolution.

I sincerely apologize for breaching the terms and will fix it asap!