Posted on Friday 31 December 2004
The Dreamweaver pop-up menu behaviour works like a charm in Firefox except for the cursor, which is a text cursor instead of a hand on rollover. That annoyed the heck out of me so I digged into it and found an easy solution. In mm_menu.js, the file that Dreamweaver adds in your site to make the behaviour run, change lines 144 and onward from :
else if (!document.layers) {
itemProps += 'font-size:' + menu.fontSize + 'px';
}
To:
else if (!document.layers) {
itemProps += 'font-size:' + menu.fontSize + 'px;cursor:pointer';
}
Save and you're done. I told the trick to Allessandro Crugnola of sephiroth.it and he implemented it immediately on his site, and says it worked like a charm.


