vtiger Forum Index vtiger
The Honest Open Source CRM
 

Navigation dropdown problem in IE (and Safari?)
Click here to go to the original topic

 
       vtiger Forum Index -> Code Contributions - 5.0.2
Previous topic :: Next topic  
Author Message
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.
Back to top  
dartagnanlaf



Joined: 21 Sep 2006
Posts: 12

Posted: Thu Sep 21, 2006 2:36 pm    Post subject: slight post error on my part  

I missed a piece of the Edited Code w/ the code tags. it should read:
Edited
Code: <div id="qcform" style="position:absolute;width:500px;top:80px;left:450px;z-index:5000;">
</div>
Back to top  
 
       vtiger Forum Index -> Code Contributions - 5.0.2
Page 1 of 1


Powered by phpBB Search Engine Indexer
Powered by phpBB 2.0.15 © 2001, 2002 phpBB Group