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_birch/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?
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 }
What happens when you add
.sf-menu a, .sf-menu a:visited {
cursor:pointer;
}
精彩评论