Doh, simplemenu broke the cursor in textfields and textareas again. Fix: change position 'fixed' to 'absolute', which changes the behavior of the menu but doesn't break textareas. The absolute positioning is also much friendlier for the Advanced settings which allow placement of the menu anywhere on the page.

Index: simplemenu.css
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/simplemenu/simplemenu.css,v
retrieving revision 1.9
diff -u -F^f -r1.9 simplemenu.css
--- simplemenu.css	30 Jan 2007 06:02:09 -0000	1.9
+++ simplemenu.css	1 Feb 2007 00:10:50 -0000
@@ -14,7 +14,7 @@
 border-bottom:1px solid #999;
 font:11px Verdana, Helvetica, sans-serif;
 left:0;
-position:fixed;
+position:absolute;
 top:0;
 width:100%;
 height:21px;

Comments

ewhipple’s picture

The fixed position is very useful, but unfortunately not enough to compensate for the missing text cursor. Is there any hope of resolving the conflict?

m3avrck’s picture

Firefox 3 :-)

Seems to be working in that version ;-)

Yes this should be able to be fixed when I get around to rewriting a lot more of it in jQuery.

m3avrck’s picture

Status: Active » Fixed

Ok, I changed changed this to position:absolute per Nate's suggestion.

While at the top is useful, it does indeed break basic browser functionality which can be very annoying/hard to get around. Note, the cause of this is the rendering issue in Firefox 2, which is fixed in Firefox 3 alpha -- this feature shall return when that day arrives :-)

Anonymous’s picture

Status: Fixed » Closed (fixed)