묻고답하기

아래 그림의 빨간색 부분을 없애고 싶은데 어떻게 할 수 있을까요?

다른 곳에는 그런대로 게시판 제목이 있어서 좋은데 메인페이지에서는 어색해서 지우고 싶은데요ㅠㅜ

고수님들의 조언을 부탁드립니다.

noname01.jpg

 

 

첫페이지의 문서

 

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


<div id="layoutBody">

 

<div id="headerWhole" <headerWholeBg)-->style="border-bottom:4px'>!--@if($layout_info->headerWholeBg)-->style="border-bottom:4px solid #014D7E; background:url(http://www.xpressengine.com/{$layout_info->headerWholeBg})undefined<!--@end-->>
<div id="header" onmouseover="hiddenSecondMenu()" <headerBg)-->style="background:url(http://www.xpressengine.com/{$layout_info->headerBg})undefined"class="on2">!--@if($val['selected'])-->class="on2"<!--@end-->><a href="./{$val["href']}" onmouseover="showSecondMenu({$firstMenuCount})" <onclick="window.open(this.href);return">!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['link']}>
   {@ $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 <style="border-bottom:1px">!--@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 <class="on">!--@if($val['selected'])-->class="on"<!--@end-->><a href="./{$val["href']}" <onclick="window.open(this.href);return">!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['link']}>
   <class="on">{$val['link']}!--@if($val['selected'])-->class=" a li< on?<!--@end-->>{$val[?link?]}<>>
    <
!--@end-->
   <!--@endif--><!--@endforeach-->
  </ul>
  <ol id="contentLeftSecondMenuOl">
   <!--@foreach($menu_1st_3['list'] as $key => $val)--><!--@if($val['link'])-->
    <li <class="on">!--@if($val['selected'])-->class="on"<!--@end-->><a href="./{$val["href']}" <onclick="window.open(this.href);return">!--@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:154px; height:35px; display:block;" href="./{$layout_info->footerRightImageUrl}" target="footerRightImage"><img src="./{$layout_info->footerRightImage}" width="154" height="35" /></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 남기남
닥스굿 게시판 글 열람자 IP 확인할 방법 있을까요? [1] 2009.12.17 by 라르게덴
개발. ActiveXObject 중에 되는게 있고 안되는게 있는데요 혹시 아시는분 없나요.. [1] 2009.12.17 by 라르게덴
예님 웹페이지 오류 정보가 뜨는데 뭔지 잘 모르겠습니다. [1] file 2009.12.17 by 라르게덴
rosebird 첨부한 이미지를 클릭하면 팝업이 되지 않게 하는 방법이 뭔가요? [1] 2009.12.17 by 라르게덴
Happiness XE코어만 설치후 개별업데이트하였는데 ()표시 [1] file 2009.12.17 by 라르게덴
박문주415 이미지위로올리는방법 file  
드리머183 설치파일이 열리지않아요 [1] 2009.12.17 by 백성찬
님은누신지 시작페이지가 백지가 되었어요  
eric79won 제로보드XE로 이런것 가능한지 답변 부탁드립니다.  
푸하라 1.3.1.1 업글후 에디트 창이 활성화 되지 않습니다. [2] 2009.12.17 by 김파니
청춘개똥 게시판이 백지가 되어버렸습니다.  
청춘개똥 페이지가 갑자기 사라졌습니다. Main 페이지와 사진첩 페이지요.  
웃는사람라종렬 메인페이지 레이아웃의 빈칸을 어떻게 없앨 수 있나요ㅠㅜ(XE왕초보) [1] file 2009.12.17
정보미535 content 위젯에서 댓글 추출시 new아이콘 뜨게하기 [1] 2009.12.16 by blue7376.myid.net
여초 최근 문서 출력 위젯에서 카테고리 같이 출력하기 [3] 2011.04.08 by 楽しい優良サイト
nabul2 네이버 지식인 스킨 [2] 2009.12.16 by Gekkou
하늘지기371 P 태그가 자동으로 생깁니다 [1] 2009.12.30 by 피키4
ByeolSatang 로그인창이 플래쉬 뒤로 갑니다 [2] 2009.12.16 by 이그누
방상기 회원관리에서 확장변수 찾기 사용안됩니다.  
오월하루 아무리 찾아도 답이 없네요(에디터 색상에 관한) file  
gajagu 게시판복사할때... [1] 2009.12.16 by 엘카
우리아기 xe_official_v2 레이아웃 사이트맵  
예님 댓글달린 게시물만 열람이 되지 않습니다. [1] 2009.12.16 by 백성찬
헐크매니아 제로보드4 최신글 스킨 질문입니다.  
소피아7 게시판 제목 글자 수에 대해 질문합니다. [1] 2009.12.16 by 라르게덴
동~ 게시판좀 봐주세여... [1] 2009.12.16 by 백성찬
멀티히터 하늘이님 게시판 글 에러나는 현상 jpg입니다. file  
gajagu 플레시카운터 적용시 이미지 크게보기하면..  
개발. ActiveXObject는 지원이 안되는 건가요..?  
미누7 "권한이없습니다" 나오는 페이지를 수정하려면? 위치가? [그림有] [1] 2009.12.16 by 궁금이2