묻고답하기

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

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

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

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 남기남
ㄷㄱㅎㄷㄱㅎㅁㅈㄱ 비밀글  
개라증 주소 포워딩에 대해서 제발제발 도와주세요 [1] 2009.12.22 by 공듀
주알리기 최근 게시물 출력에 관해 질문드립니다. file  
강성재822 플래닛 생성 오류 "금지된 제목입니다!"  
ashy 메뉴 글자 색상은 어디서 변경하나요..? [1] 2009.12.22 by 메디안
이영규616 게시판에서 제목들 간 줄 간격을 좁힐 수는 없나요?  
이영규616 WMV는 실행이 되고 mpg 파일은 실행이 안되나요?  
이영규616 게시판에서 실행되는 오디오 파일을 다운받으려면?  
우종협 글 본문에 글을 쓸 수 없는지 안되는데 이럴 때는 어떻게 해야 하나요? [1] file 2009.12.22 by 백성찬
ㅂㅂㅈㄷㄱㅅ 관리페이지의 메뉴 관리가 안되요~~ [1] file 2009.12.22 by 백성찬
언늬 헤더 부분의 메뉴 폰트 색상 변경 어떻게 가능한가요? [1] 2009.12.22 by 멀루할까
XlanD 블로그 사이드바 위치 문제(CSS)로 질문드립니다.  
종명종명 게시판의 상담기능 사용시 관리자가 쓴 글 보여주는 방법은요?  
valve 제로보드는... [1] 2009.12.22 by 백성찬
최홍림 xe 1.3 처음 초보입니다 메뉴 추가 에관해 질문드립니다. [1] 2009.12.22 by 백성찬
붐업 홈페이지에서 ssl기능설정한뒤로 [1] 2009.12.22 by 백성찬
젠이 게시판에 글을 올리면 해당 게시판의 읽기 권한을 가진 사람들에게 SMS가 전송되도록 할 수 없나요? [2] 2009.12.22 by 백성찬
이효남595 영문사이트제작시 사이트를 열었을때 영문이 디폴트로 설정하는방법? [1] 2009.12.22 by 백성찬
초보에요^^* 위젯스타일 적용시 상단에 10px 여백이 발생합니다. file  
유아원 이거 어떻게 하나요? [1] file 2009.12.22 by 백성찬
히상궁 페이지에 오류가 나옵니다.  
옥수수밭 첨부파일에 만기일 적용하는 방법?  
킴윤 1.3.1.2 버전 업데이트 에러 [1] 2009.12.22 by 시드민
리어코리아 IE6 차단하는 방법 [1] 2009.12.22 by 데미나인
saiph 1.3.1.2 업데이트시 오류 관련하여 질문드립니다. file  
초보중초보 플래쉬디지털시계위젯적용이 안되네요  
마로. 내용보기중 "이 게시물을"에 대하여. [1] file 2009.12.22 by 초보중초보
멀루할까 미니온위젯 오류에 대해서 질문 드릴게요  
양꼭지 ''다음'' 혹은 ''네이버'' 뉴스 같은것 홈피에 넣을려면 어떻게 해야 하나요? [1] file 2009.12.22 by nabul2
천태양00 배경색이 검정인데... 회원가입누르면 ..