묻고답하기

안녕하세요. 홈페이지 를 xe(제로보드로) 제작하였습니다.
레이아웃 스킨을 이용해서 2단 메뉴를 만들었는데
익스플로워 8에서는 정상적으로 작동이 됩니다.
하지만 익스플로워 9에선 호환성버튼을 눌러야 작동이되고,
또 크롬이나 다른 익스플로워에선 2단 메뉴가 나오지 않아요.

소스는 아래와 같습니다..

고수님들 도와주세요. 모든(유명) 익스플로워에서 2단 메뉴를 사용하고 싶습니다. 

<!--%import("css/default.css")-->


<div id="layoutBody">

<div id="headerWhole" <!--@if($layout_info->headerWholeBg)-->style="border-bottom:4px solid #014D7E; background:url('{$layout_info->headerWholeBg}')"<!--@end-->>
<div id="header" onmouseover="hiddenSecondMenu()" <!--@if($layout_info->headerBg)-->style="background:url('{$layout_info->headerBg}')"<!--@end-->>
 <div id="headerTopRight">
 <!--최상단 우측 내용-->
 <!--@if($layout_info->headerTopRightLeft)-->
  <div id="headerTopRightLeft">
   {$layout_info->headerTopRightLeft}
  </div>
 <!--@end-->
 <!--최상단 우측 로그인정보-->
 <!--@if($layout_info->headerTopRightLogin == "use")-->
  <div id="headerTopRightLogin">
   <!--@if($logged_info)-->
        <!--@end-->
   </div>
  <!--@elseif($layout_info->headerTopRightLogin == "notuse")-->
  <!--@end-->
 </div>
 <!--상단 로고-->
 <!--@if($layout_info->headerLogo)-->
  <div id="headerLogo">
   <a style="width:160px; height:37px; display:block;" href="{$layout_info->homepage_url}"><img src="{$layout_info->headerLogo}" width="160" height="37" /></a>
  </div>
 <!--@end-->
</div>
</div>

<!--상단 우측 로그인정보 클릭 시 나타나는 로그인폼-->
<div id="headerTopRightLoginWiget">
<img class="zbxe_widget_output" widget="login_info" skin="Forhanbi_login" colorset="forhanbi1.5" />
</div>

<!--상단 1차메뉴-->
<div id="headerFirstMenu">
 <img style="float:left;" src="images/top_menu_bg_left.gif" />
 <ul id="headerFirstMenuUl">
  {@ $firstMenuCount=1}
  <!--@foreach($main_menu->list as $key => $val)--><!--@if($val['link'])-->
   <li <!--@if($val['selected'])-->class="on2"<!--@end-->><a href="{$val['href']}" onmouseover="showSecondMenu({$firstMenuCount})" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['link']}</a></li>
   {@ $firstMenuCount++}
  <!--@endif--><!--@endforeach-->
 </ul>
 <img style="float:left;" src="images/top_menu_bg_right.gif" />
</div>

<!--상단 2차메뉴-->
<div id="headerSecondMenu" >
 {@ $secondMenuCount=1}
 <!--@foreach($main_menu->list as $key => $val)--><!--@if($val['link'])-->
  {@ $menu_1st = $val }
  <ol <!--@if($menu_1st['list'])-->style="border-bottom:1px solid #000000; border-right:1px solid #000000;"<!--@end--> id="headerSecondMenuOl{$secondMenuCount}">
   <!--@foreach($menu_1st['list'] as $key => $val)-->
    <li <!--@if($val['selected'])-->class="on"<!--@end-->><a href="{$val['href']}" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['link']}</a></li>
   <!--@end-->
  </ol>
  {@ $secondMenuCount++}
 <!--@endif--><!--@endforeach-->
</div>


<!--컨텐트 시작-->
<div id="content" onmouseover="hiddenSecondMenu()">
 <div id="contentRight">
  <div id="contentRightTop">
   <div id="contentRightTopCategory">
    <strong>·</strong> <a href="{$layout_info->homepage_url}">HOME</a>
    <!--@foreach($main_menu->list as $key => $val)--><!--@if($val['link'])-->
     <!--@if($val['selected'])-->
      {@ $menu_1st_2 = $val }
       > {$val['link']}
      <!--@foreach($menu_1st_2['list'] as $key => $val)--><!--@if($val['link'])-->
       <!--@if($val['selected'])-->
        > <font color="#88ADC5">{$val['link']}</font>
       <!--@end-->
      <!--@endif--><!--@endforeach-->
     <!--@end-->
    <!--@endif--><!--@endforeach-->
   </div>
   <ol id="contentRightTopSecondMenuOl">

    <!--@foreach($menu_1st_2['list'] as $key => $val)--><!--@if($val['link'])-->
     <!--@if($val['selected'])-->
      <li>{$val['link']}</li>
     <!--@end-->
    <!--@endif--><!--@endforeach-->
   </ol>
  </div>
  <div id="contentRightBottom">
   {$content}
  </div>
 </div>

 <div id="contentLeft">
  <ul id="contentLeftFirstMenuUl">
   <!--@foreach($main_menu->list as $key => $val)--><!--@if($val['link'])-->
    <!--@if($val['selected'])-->
     {@ $menu_1st_3 = $val }
     <li <!--@if($val['selected'])-->class="on"<!--@end-->>{$val['link']}</li>
    <!--@end-->
   <!--@endif--><!--@endforeach-->
  </ul>
  <ol id="contentLeftSecondMenuOl">
   <!--@foreach($menu_1st_3['list'] as $key => $val)--><!--@if($val['link'])-->
    <li <!--@if($val['selected'])-->class="on"<!--@end-->><a href="{$val['href']}" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>○ {$val['link']}</a></li>
   <!--@endif--><!--@endforeach-->
  </ol>
  <!--@if($layout_info->contentLeftBottom)-->
   <div id="contentLeftBottom">
    {$layout_info->contentLeftBottom}

   </div>
  <!--@end-->
 </div>
</div>



<div id="footer">
 <!--@if($layout_info->footerLogo)-->
  <div id="footerLogo" >
   <a style="width:127px; height:58px; display:block;" href="{$layout_info->homepage_url}"><img src="{$layout_info->footerLogo}" width="127" height="58" /></a>
  </div>
 <!--@end-->
 <!--@if($layout_info->footerCopyright)-->
  <div id="footerCopyright">
   {$layout_info->footerCopyright}
  </div>
 <!--@end-->
 <!--@if($layout_info->footerRightImage)-->
  <div id="footerRightImage">
   <a style="width:80px; height:58px; display:block;" href="{$layout_info->footerRightImageUrl}" target="footerRightImage"><img src="{$layout_info->footerRightImage}" width="80" height="80" /></a>
  </div>
 <!--@end-->
 <!--@if($layout_info->footerBottom)-->
  <div id="footerBottom">
   {$layout_info->footerBottom}
  </div>
 <!--@end-->
</div>



</div>



<script>
//상단 1차메뉴 마지막 리스트 마디 및 여백 없애는 스크립트
<!--@if($main_menu->list)-->
firstMenuLength=headerFirstMenuUl.children.length;
headerFirstMenuUl.children[firstMenuLength-1].style.paddingRight=0;
headerFirstMenuUl.children[firstMenuLength-1].style.marginRight=0;
headerFirstMenuUl.children[firstMenuLength-1].style.background="none";
<!--@end-->


//상단 1차메뉴 마우스오버 시 2차메뉴 슬라이드 함수
function secondMenuSlide(){
 if(headerSecondMenu.offsetHeight<secondMenuHeight){
  headerSecondMenu.style.height=heightNum;
  heightNum=heightNum+7;
  setTimeout("secondMenuSlide()",10);
 }
 else{
  headerSecondMenu.style.height=secondMenuHeight;
 }
}


//상단 1차메뉴 마우스오버 시 2차메뉴 위치조정하고 나타나게 하는 함수
function showSecondMenu(n){
<!--@if($main_menu->list)-->
 heightNum=0;
 headerSecondMenu.style.height=0;
 headerSecondMenuLeft=0;
 //상단 2차메뉴 위치조정
 for(i=1;i<=n;i++){
  headerSecondMenuLeft=headerSecondMenuLeft+headerFirstMenuUl.children[i-1].offsetWidth;
 }
 headerSecondMenu.style.left=headerSecondMenuLeft+74;
 //선택된 상단 1차메뉴의 2차메뉴만 나타나게 하는 부분
 for(i=1;i<=firstMenuLength;i++){
  headerFirstMenuUl.children[i-1].className="off";
  document.getElementById('headerSecondMenuOl'+i).style.display="none"; 
 }
 headerFirstMenuUl.children[n-1].className="on";
 document.getElementById('headerSecondMenuOl'+n).style.display="block";
 secondMenuHeight=document.getElementById('headerSecondMenuOl'+n).offsetHeight;
 secondMenuSlide();
<!--@end-->
}

//상단 2차메뉴 사라지게 하는 함수
function hiddenSecondMenu(){
 <!--@if($main_menu->list)-->
 for(i=1;i<=firstMenuLength;i++){
  headerFirstMenuUl.children[i-1].className="off";
  document.getElementById('headerSecondMenuOl'+i).style.display="none"; 
 }
<!--@end-->
}

//상단 우측 로그인정보 클릭 시 나타나는 로그인폼
loginNum=0;
function showLoginForm(){
 if(loginNum==0){
  headerTopRightLoginWiget.style.display="block";
  loginNum=1;
 }
 else{
  headerTopRightLoginWiget.style.display="none";
  loginNum=0; 
 }
}
</script>
글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
맹이01 게시물 작성후, (등록) 버튼 누르면;; 반응이 없어요... (작성은됨..)  
Gomaje XE core update후 [1] 2012.02.06 by delphiXE2
함락신모드 잘못 입력하셨습니다 오류 ㅠㅠ [1] 2012.02.06 by delphiXE2
요술봉 추천수 = 기존추천수 - 비추천 이거 가능할까요? [1] 2012.02.06 by delphiXE2
김해랑 회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요? [4] 2012.02.06 by randy80
그늘숲 퀵메뉴를 달려고 합니다!! (일주일째 해답을 못찾고 있습니다!!) [2] file 2012.02.06 by 그늘숲
밸우~ 텍스타일 새글을 쓰면...화면상에 나타나지 않아요 [1] 2012.02.06 by 재문아빠
광오문주 제로보드 XE 초보인데 메뉴질문좀하겠습니다, [1] file 2012.02.06 by 송동우
요술봉 추천이랑 비추천시 작동하는 소스위치좀 가르쳐주세요. [1] 2012.02.06 by 송동우
독도.한국땅 낙후버젼 업데이트방법 [1] file 2012.02.06 by snows96
때린데 또때려 팁게시판 부운영자 설정관련 질문드립다. [2] 2012.02.06 by 송동우
요술봉 조회수랑 추천수 0으로 초기화 시킬 방법 없을까요? [2] 2012.02.06 by _첸
한국인삼 진짜진짜 왕왕초보덴요. 위젯 넣는 방법 알려주세요 [1] 2012.02.17 by 송동우
김우횬 1.4.5 업데이트 후 로그인 불가능  
iMint 일반 페이지에 레이아웃 적용하려면.. [1] 2012.02.06 by 똑디
재문아빠 방명록 글자 잘리는 문제 추가 문의입니다. [2] file 2012.02.06 by 재문아빠
css3pie 애드온에 대해 다시 질문드립니다. file  
성호군 xe게시판 카테고리 -> 쉡게 메뉴로 만드는 방법.?? 미해결 상태.. [1] file 2012.02.06 by delphiXE2
SeCUre <?php ob_start('ob_gzhandler'); ?> php 상단이어디죠?  
빛소리 XE1.5.1.4, content (확장) 위젯 (기본스킨, default) 출력 에러입니다. [1] 2012.02.06 by 빛소리
샤로우 회원탈퇴후 메인으로 이동하려면 어떻게 해야하나요? [1] 2012.02.06 by 송동우
양희종1 2단 메뉴 익스플로워 8에서만 되요.. ㅠ.ㅠ  
느림에의미 XE로는 방문자 1만명 이상 사이트 운영하기 어려운듯... [3] 2012.02.06 by 뚜지자
아즈샤 [DB] 현재 XE 버전에서 ms-sql 2000 으로 설치해보신 분 계신가요?  
my5082 카운터 질문 [1] 2012.02.06 by 송동우
zeroborad짱 로그인하지 않고 XE기반 게시판모듈로만든 게시판에 글을 올릴떄 홈폐이지입력란을 없앨 수 있나요? [2] 2012.02.06 by 송동우
cloudn1ne 공식스킨 수정중인데, 도와주세요! [2] file 2012.02.06 by 송동우
샤로우 회원탈퇴후 메인페이지로 이동하게끔 하려면 어떻게 해야하나요? [1] 2012.02.06 by 송동우
한국12 페이스북 "Like Box " 좋아요 [1] 2012.02.06 by delphiXE2
한국12 Like Box 홈페이지에 다는방법 [1] 2012.02.06 by delphiXE2