views:

239

answers:

2

I am implementing the superfish menu and have noticed that there is a funny behavior with the cursor loosing its default styling (pointer).

For example: http://users.tpg.com.au/j%5Fbirch/plugins/superfish/#examples

If you rollover the first menu item and move your mouse over the drop down menu, the cursor changes from being a pointer to a regular arrow (I am using FF 3.5).

Has anyone else run into this / found a fix?

A: 

What happens when you add

.sf-menu a, .sf-menu a:visited {
    cursor:pointer;
}
lucas
A: 

I would try to add some CSS that's attached to the list items as a work-around.

For example:

ul.myMenu li { cursor:pointer }
jeerose