dartagnanlaf
Joined: 21 Sep 2006
Posts: 12
|
| Posted: Thu Sep 21, 2006 2:22 pm Post subject: Navigation dropdown problem in IE (and Safari?) |
|
|
NOTE: Possibly a solution to Ticket #2183
Bug: Tools and Settings have a gap at bottom of button where if mouse goes there, dropdown disappears.
Reason: div tag for Quick Create area is actually on top of the bottom of the button, blocking the javascript from running.
Fix: Slightly change the absolute positioning of the Quick Create div to lower it just enough. (in Smarty/templates/Header.tpl)
Original Code: <div id="qcform" style="position:absolute;width:500px;top:60px;left:450px;z-index:5000;"></div>
Edited Code: <div id="qcform" style="position:absolute;width:500px;top:80px;left:450px;z-index:5000;"> </div>
This fixes the issue in IE, which I believe will fix in Safari also, but I do not have a Safari browser to test with. |
|