From 12519279521fbf23d53e05cc8152f5efb1568a6b Mon Sep 17 00:00:00 2001 From: Ted Serbinski Date: Wed, 10 Jan 2007 05:40:31 +0000 Subject: [PATCH] #108098 fix cursor being hidden in firefox, patch by quicksketch. note, the menu no longer stays on top as you scroll, however forms are usable once again. this feature will return in version 3 when it's rewritten to be 100% jQuery. --- simplemenu.css | 2 +- simplemenu.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/simplemenu.css b/simplemenu.css index b2c0b420..d18e9d23 100644 --- a/simplemenu.css +++ b/simplemenu.css @@ -14,7 +14,7 @@ background:#eee; border-bottom:1px solid #a3a3a3; font:12px Arial, Helvetica, sans-serif; left:0; -position:fixed; +position:static; top:0; width:100%; } diff --git a/simplemenu.js b/simplemenu.js index 54424f0c..d4f3cfa3 100644 --- a/simplemenu.js +++ b/simplemenu.js @@ -5,7 +5,7 @@ $(document).ready(function() { var basePath = Drupal.settings.menu_bar.basePath; // insert extra
so menu doesn't overlap theme - $('body').prepend('
'); + $('body').prepend(''); // Drupal menu callback $('#menubar').load(basePath + 'menu_bar/menu', function() {