I think this should do it.
Look for the external JavaScript file "mm_menu.js".
Save the file for backup purposes to somewhere safe.
Open the original file.
Find the following snippet of code ( yours might look slightly different ):
Code:
var dTag = '<div id="menuItem'+ countItems +'" style="position:absolute;left:' + itemLeft + 'px;top:'+ itemTop +'px;'+ itemProps +'">';
add "cursor: pointer" like so:
Code:
var dTag = '<div id="menuItem'+ countItems +'" style="cursor:pointer; position:absolute;left:' + itemLeft + 'px;top:'+ itemTop +'px;'+ itemProps +'">';
Save the file and try it out.
Last edited by ElectricSheep; 07-23-2006 at 03:36 PM..
|