묻고답하기

안녕하세요

스킨을 제작중인데 사이트는 다음과 같습니다

http://aiesecskku.org/xe/

그런데 아무리 해도 로고와 메뉴가 붙지를 않네요 -_-;

일단  layout.html 소스입니다

 <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>스킨 제작</title>
    <link rel="stylesheet" href="css/layout.css" type="text/css" />
<title>Example</title>
<style type="text/css">body {
 background-color: #FFFFFF;
}
</style>
<script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
</head>

<body>

<!-- 레이아웃 시작 -->
<div> <div id ="topInnerBox">
  <div>        <a href="http://aiesecskku.org"><img src="./images/logo.gif" alt="" class="iepngfix" /></a>
        </div>
        <div>        <script type="text/javascript">displayMultimedia("http://aiesecskku.org/menu.swf", "700","107",false);</script>
        </div>
    </div>
</div>
{$content}
<!-- 레이아웃 끝-->
</div>
<div style="width:1025px; height:54px; position:absolute; left:-3px; top:726px; z-index:1;">
    <table border="0" cellpadding="0" cellspacing="0" width="100%">
        <tr>
            <td width="80%"><img src="images/blue_w_descriptor.gif" width="1024" height="53" border="0"></td>
            <td width="20%">&nbsp;</td>
      </tr>
  </table>
</div>
</div>


</body>
</html>

           
       
   
 
  
  </div>
  <div></div>
</body>
</html>

 


layout.css 의 코드입니다

@charset "utf-8";

/* 퍼블리싱을 위하여 임시로 만든 css, 스킨 제작시 삭제 */
body {
    margin:0;
    padding:0;
}

img {
    border:0;
}

form {
    margin:0;
    padding:0;
}


/* 상단 로고 + 검색폼 + 메뉴 표시 최외곽 */
#topBox {
    height:107px;
    background:transparent url("../images/back.gif") repeat-x left top;
 positon;
}

/* 상단 로고 + 검색폼 + 메뉴가 들어가는 가로 1028 크기의 가운데 정렬 영역 */
#topInnerBox {
    width:1028px;
    height:107px;
    margin:0 auto;
}

/* 로고 박스 */
#logoBox {
    width:230px;
    height:107px;
    text-align:center;
    float:left;
    overflow:hidden;
}


/* 상단 메뉴 영역 및 관련된 버튼 스타일 */
#menuBox {
 width;700;
 height;107;
    margin:0;
    padding:0;
    list-style:none;
    clear:both;
    float:right;
 position;absolute;
}

 

/* 내용 영역, 내용의 좌우 그림자 효과를 위해 가로크기 + 12*2 를 하고 가운데 정렬 */
#contentBox {
    width:1052px;
    margin:0 auto 30px auto;
    overflow:hidden;
}

/* 내용의 왼쪽 그림자 효과 */
#contentLeftBGBox {
    width:1052px;
    background:transparent url("../images/left_bg.png") repeat-y left top;
    behavior:url(./common/js/iePngFix.htc);
    overflow:hidden;
}

/* 우측 그림자 효과를 지정 */
#contentRightBGBox {
    width:1052px;
    background:transparent url("../images/right_bg.png") repeat-y right top;
    behavior:url(./common/js/iePngFix.htc);
    overflow:hidden;
}

/* 왼쪽 서브 메뉴와 내용을 포함하는 영역 */
#contentInnerBox {
    width:1028px;
    margin:0 12px 0 12px;
    background-color:#FFFFFF;
    overflow:hidden;
}

/* 왼쪽 서브 메뉴. 크기를 max인 238px로 지정 */
#leftMenuBox {
    width:234px;
    float:left;
    padding:10px 0 30px 0;
}

#leftMenuBox .leftSideLoginBox {
    width:198px;
    margin:0 20px 15px 20px;
}

#leftMenuBox .leftSideMenuBox {
    width:190px;
    height:300px;
    margin:0 14px;
    padding:31px 10px 0 10px;
    background:transparent url("../images/left_side_menu_bg.jpg") no-repeat left top;
}

#leftMenuBox .leftSideMenuBox ul {
    padding:0;
    margin:0 5px;
    list-style:none;
}

#leftMenuBox .leftSideMenuBox ul li {
    padding:4px 0 5px 14px;
}

#leftMenuBox .leftSideMenuBox ul li.main {
    background-color:#F2F2F2;
    border:1px solid #E8E8E8;
}

#leftMenuBox .leftSideMenuBox ul li.main a {
    color:#3E3E3E;
}

#leftMenuBox .leftSideMenuBox ul li.sub {
    background-color:#FFFFFF;
    border-top:1px dotted #EEEEEE;
}

#leftMenuBox .leftSideMenuBox ul li.first {
    border-top:none;
}


#leftMenuBox .leftSideMenuBox ul li.sub a {
    color:#818181;
}

#leftMenuBox .leftSideMenuBox ul li a {
    font-family:arial;
    font-size:9pt;
    text-decoration:none;
}

/* 내용 출력 */
#mainContentBox {
    width:786px;
    float:left;
    padding:10px 0 30px 0;
}

/* 하단 그림자 효과 지정 */
#contentBottomBGBox {
    overflow:hidden;
}

#contentBottomBGBox .leftBottomBG {
    float:left;
}

#contentBottomBGBox .contentBottomBG {
    width:1028px;
    height:12px;
    float:left;
    background:transparent url("../images/bottom_bg.png") repeat-x left top;
    behavior:url(./common/js/iePngFix.htc);
}

#contentBottomBGBox .rightBottomBG {
    float:right;
}

#header h2 { position:absolute; top:75px; right:0px;}

 

 

ㅠㅠ 도대체 왜 메뉴랑 로고 div 가 따로 노는걸까요 ㅠㅠ 초보한테 도움을 주세요! ㅠㅠ

글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
Spes 실시간 검색어 다음,네이트는 어떻게 받아야하나요?  
뚝새 mysql 5.5에서 글 등록시 에러... [1] file 2010.12.21 by 뚝새
nzeo초보 위젯 추가시 대상모듈 추가 안되는 현상 [1] 2010.12.21 by Jinniman
서현니 제로보드삭제 어떻게? [1] 2010.12.21 by 공듀
울뜨라 xe_board의 분류보기의 color를 변경하려면...  
진창훈 래벨 아이콘 깨짐 [1] file 2010.12.21 by 우리아기
Mgmbh naradesign 게시판스킨에서 갤러리형 제목표시 문제 [1] file 2010.12.21 by criuce
최성필 파일변조, 악성코드와 관련하여 [1] 2010.12.21 by WikixUnknown
cien ie 오류좀 봐주세요 [1] file 2010.12.21 by 울뜨라
마이무라 공유기 설치후 홈페이지 접속문제!! [2] file 2010.12.21 by 마이무라
서현니 제로보드 삭제 [1] 2010.12.21 by 현원
모카향기 익스플로러6.0 문제..euc-kr 문제? [2] 2010.12.21 by 모카향기
개지로 레이아웃을 삭제하고 싶습니다..깨끗하게... [2] 2010.12.21 by JaeKie
keyman 게시판 댓글에서 알림 체크표시 해제와 댓글 간격 조정 file  
짜장면이좋아 모바일 홈페이지에서 댓글 보기가 안됩니다.  
맹이™ 회원가입폼, 로그인폼 [1] 2010.12.20 by ForHanbi
JavaScript XE -> 그누보드 데이터이전툴은 없는건가요? [1] 2010.12.20 by ForHanbi
S-N 한줄메모장 급 [1] file 2010.12.20 by 하야미소
Huckleberry Finn 크리스마스때 쓸수있는 레이아웃 추천해주세요~ [1] 2010.12.20 by 하야미소
내일맑음 회원가입 시 작업을 마쳤으나 페이지에 오류가 있습니다. [1] 2010.12.20 by 하야미소
스튜디오W 갤러리형 게시판 목록 꾸미기 [1] file 2010.12.20 by 하야미소
100억 xe고수님들만 좀 봐주세요! 쉬운설치...FTPㅜㅜ file  
크리디어 이미지 리사이즈 문의  
정광호975 최근게시물 목록에 게시판이름 표시 못하는지요?  
네네975 제로보드4 글등록 속도에 대해서요 file  
싸나이김 도메인 연결후 DB 가 예전껄로 ...  
소행성 급해요!!! 관리자페이지오류 file  
말라랑칼물렁컹이 모바일 뷰에서 PC 화면으로 보기 버튼은 어떻게 구현하나요??  
asmodeus 특정 사람에게 쪽지를 보낼 수 없게 하고 싶은데..  
RainDrop+ 로그인햇을때... [1] 2010.12.20