Categories | Question details Back To List | ||
Problems with dhtmlxmenu in Firefox Excuse my English is bad. Please help me I'm using dhtmlxmenu, in IE works correctly, but in FireFox submenus are out of position. Thank you Answer posted by Support on Dec 03, 2008 07:00 Could you please provide any demo/sample/source code? Answer posted by Rogério on Dec 03, 2008 10:06 <link rel="STYLESHEET" type="text/css" href="codebase/dhtmlxmenu.css"> <?php // Menu Personalizado $query = "select count(rid) from rmod where length(rseq)=1"; // Montando Menu $query = "select rmod,rseq,rid,rpro,text_id,rorder from rmod order by 6"; echo "<div id='menu_zone' style='position: absolute; top:77; left:0; width:1024; height:50;'/>";
while ($line = pg_fetch_row($result)) $nivel = substr($line[1],0,1); $query2 = "select count(rid) from rmod where substring(rseq,1,1)='$nivel' and length(rseq)>'2' and length(rseq)<'5' "; $query2 = "select count(rid) from rmod where length(rseq)>'$wnivel' and substring(rseq,1,$wnivel) = substring('$line[1]',1,$wnivel)"; echo "</script>"; ?> Answer posted by Support on Dec 04, 2008 04:18 Please try to add next line to the init of menu. echo "aMenuBar=new dhtmlXMenuBarObject('menu_zone','100%',30,'4R Solutions');"; echo "aMenuBar.disableSmartPositioning(true);"; Answer posted by Rogério on Dec 04, 2008 10:03 Thanks, worked correctly |