묻고답하기

안녕하세요. 홈페이지 를 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 남기남
다크이브 무료호스트인 오란씨에서 사용하고있는데 이렇게 하라고합니다.. [4] 2008.10.26 by 백성찬
도봉인포 게시판 목록에서 N(최신게시물표시 로고)가 줄바꿈됩니다. ㅠㅠ  
알려주시면 천재 ㅋ [2] 2008.10.26 by
늘같이 프래너 연결용 최신글 스킨 수정 좀..  
늘같이 플래너 최근게시물 출력 수정 좀..  
부암영어 첨부 [1] 2008.10.26 by N0ah
꿀물청년 회원가입창(아이디/비번찾기)에러와 최근게시글 새창에서 열기 질문  
이삭786 관리자 파일업로드 용량 조절에 관하여  
hOZooinfo [초짜]레이아웃 업데이트시 [2] 2008.10.25 by hOZooinfo
홍정효 회원관리에서 질문요... file  
꼼지825 제로보드 기본 로그인을 이용하는데요.. [1] 2008.10.25 by 누나 달려-
pillar 홈페이지에 zbxe 게시판을 연결했는데요.. [1] file 2008.10.25 by 느까끼
천 풍 저 퍼티관련 여러게 질문좀 할게요;.  
포트거스.D.에이스 글에서 사이트 주소 안나오네 어떻게 하나요? [1] 2008.10.25 by 느까끼
크레오6 정회원 이상만 첨부파일을 다운로드 있게 할 수 있는 방법은 없나요? [1] 2008.10.25 by 백성찬
포그 로그인을 분리해서.. [2] 2008.10.25 by 느까끼
행복남 [문의]웹호스팅 계정 문의 (트래픽 관련) [1] 2008.10.25 by 닥터귀염
초보 블로그 제목 크기를 조절하고 싶은데요  
빨간발 [ 분류 권한 ] 쓰기때 분류선택권한 확인부탁합니다. [2] 2008.10.25 by 빨간발
初心不變 서버에러 500 "Internal Server Error" 가 뜹니다. [6] 2008.10.25 by 백성찬
\제로보드/ 프레임셋으로 분리해서 bgm을 넣고싶은데..  
할꼬없긔 알ftp 에서 제로보드xe 폴더가 지워지지 않습니다ㅠㅠ [3] 2008.10.25 by 백성찬
superion 프로필 사진 gif 애니매이션 [1] 2008.10.25 by SMaker
TheZen# 제로보드 페이지에 회원 정보를 출력하고 싶습니다...  
꿀물청년 메인페이지 꾸미기 위젯추가 강의 화면이 실제와 다른점? [4] 2008.10.25 by SMaker
천 풍 님들 제로보드XE 하는데 호스트욛ㄷㄷㄷ; [5] 2008.10.25 by k수호
\제로보드/ 좌측메뉴 사용하는방법..?ㅠ [2] 2008.10.25 by 백성찬
가을길e admin계정 숨김 할수 있나요??  
ddddffdfd 최근 이미지 출력에 붙여넣기 한 이미지가 안떠요 [3] 2008.10.25 by 신지
☜ TeRy ☞ 서브도메인이 바뀜에 따라 로그인 풀림현상 [2] 2008.10.25 by 김영대