묻고답하기
제로보드4 가운데 정렬이 개판입니다..ㅠㅠ
2015.01.26 05:18
http://thedeoking.dothome.co.kr/
주소 클릭해 들어가보시면 아시겠지만 back(게시판) 부분은 엄청나게 넓거나 왼쪽으로 치우친 경우도 있구요
foot 역시 왼쪽으로 치우쳤습니다........ 정말 강좌 보면서 정직하게 하나하나 따라했는데 왜 이렇게 된건지ㅠㅠ
혹시 필요하실까 싶어 나모에서 태그 복사해 붙여봅니다 ㅠ.ㅠ
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>제목 없음</title>
<meta name="generator" content="Namo WebEditor(Trial)">
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red" background="C:\Users\hagoun\Documents\HYU\대외활동\홈\DeskWalls_(5).jpg">
<table align="center" cellpadding="0" cellspacing="0" width="700">
<tr>
<center>
<td width="700"><img src="http://thedeoking.dothome.co.kr/head.png" border="0" usemap="#ImageMap1"></td>
</tr>
<tr>
<td width="700" background="http://thedeoking.dothome.co.kr/bbs/zboard.php?id=main"onfocus='blur()'>
<area shape="rect" coords="15, 323, 102, 367" href="http://thedeoking.dothome.co.kr/bbs/zboard.php?id=main"onfocus='blur()'>
<area shape="rect" coords="117, 324, 229, 367" href="http://thedeoking.dothome.co.kr/bbs/zboard.php?id=diary"onfocus='blur()'>
<area shape="rect" coords="240, 323, 344, 367" href="http://thedeoking.dothome.co.kr/bbs/zboard.php?id=text1"onfocus='blur()'>
<area shape="rect" coords="350, 323, 465, 367" href="http://thedeoking.dothome.co.kr/bbs/zboard.php?id=text2"onfocus='blur()'>
<area shape="rect" coords="472, 324, 579, 366" href="http://thedeoking.dothome.co.kr/bbs/zboard.php?id=bbs"onfocus='blur()'>
<area shape="rect" coords="587, 324, 676, 368" href="http://thedeoking.dothome.co.kr/bbs/zboard.php?id=link"onfocus='blur()'>
</map><map name="ImageMap2">
<area shape="rect" coords="302, 19, 402, 53" href="##">
</map></body>
</html>
도와주시면 감사하겠습니다. ㅠㅠ
댓글 4
-
mindpainter
2015.01.26 10:17
-
더깅
2015.01.26 21:44
아 댓글을 이제 확인했네요 ㅠㅠ 정말 죄송하지만 제가 모자라 이해가 어렵습니다...ㅠㅠ 위에 적어놓은 태그 중 적어주신 태그를 어디에 위치시켜야 하는지 말씀해주실 수 있나요..?
-
mindpainter
2015.01.28 10:31
어떤걸 물어보시는지 정확히 모르겠네요.. ㅜㅜ 그래서..
기존에 가지고 계신 html의 table태그들을 감싸는 div를 만드시라는 의미구요..
예: table을 div로 감쌈.
<table></table> -> <div><table></table></div>
div로 table들을 감싸는 이유는 하나의 div로 전체레이아웃의 기본 사항을 컨트롤 하기 위함 입니다.
그러면 어디에 위치시켜야 하는지 감이 오시지 않을까..
그리고
.contentsWrap {width: 700px; margin: 0 auto}의 위치를 물어보신다면..
1. html문서 <head>태그 사이에
<style>.contentsWrap {width: 700px; margin: 0 auto}
</style>
2. 새로 만든 div에..
<div style="width: 700px; margin: 0 auto">
3. html상단에 링크되어있는 css파일(확장자가 css임)들 중 하나에
.contentsWrap {width: 700px; margin: 0 auto}를 추가
세가지 방법 중 하나를 쓰시면 됩니다. ㅜㅜ;; -
아형여옹
2015.01.27 10:40
홈리스 님에게 물아보세요. ㅎㅎ 제로보드4에 대해선 지존이심
table 태그를 모두 감싸는 div를 하나 만드시고
css 속성에 width: 700px; margin: 0 auto를 넣어주세요..
불필요한 태그들은 정리해주시구요.. map 태그들은 감싸셔도 되고 안하셔도 됩니다.
<div class="contentsWrap">
<table>
.
.
.
</table>
</div>
css
.contentsWrap {width: 700px; margin: 0 auto}