The support for that is horrible in this menu. You can get the entire menu to use the pointer (looks like a hand with a finger pointing on most systems) cursor by opening up the menu_com.js file with a text only editor. Search for:
cursor
You will find this line (the only one with that word in it):
Code:
this.style.cursor=ExpYes&&(this.LinkTxt||(RcrsLvl==1&&UnfoldsOnClick))?'hand':'default';
Change it to:
Code:
this.style.cursor=ExpYes&&(this.LinkTxt||(RcrsLvl==1&&UnfoldsOnClick))?'pointer':'pointer';
Hit save, and "Bob's your Uncle!"
Unfortunately, the tortured logic with which this menu was written as regards the cursor style used is so outdated that differentiating between linked/unlinked expandable/not expandable items would require a lot of guessing, inspecting, and testing in various browsers.
Just making the change above, will cause problems for IE version 4 browsers which, thankfully nobody uses anymore.
Bookmarks