No "pointer" cursor on dropdown menu on firefox.

kidcash

New Member
Hello.

I have tried making a dropdown menu using Macromedia Fireworks.
Simple one, make a object using the square tool then write something in it.
Then use the slice tool to select the square I just made, then right click on the slice and click "Add drop down menu"

Then I make my drop down Menu.

Now when I export it and preview it in firefox, on the links on the dropdown menu a pointer cursor (icon of hand and index finger pointing) does not appear, just a normal marker appears like the one when you type on word.

On Internet explorer a index finger appears when I hover the cursor over the links, but on firefox it doesn't.

Anybody know how to solve this?

I know it can be solved as a year ago I made a dropdown menu and it worked well on firefox, the pointer with the index finger showed when i hovered over the links, but now it doesn't, so I dont know what I'm doing wrong.

Thanks.
 
Last edited:

LouTheDesigner

New Member
Is your dropdown menu using javascript?

If you created the dropdown menu in dreamweaver, then first open up your javascript file, and find code that looks like this:

l.style.cursor = "hand";
menuCount++;

and change it to this:

l.style.cursor = "pointer";
l.style.cursor = "hand";
menuCount++;


That might work.
 
Top