테이블 크기가 선배님들 도와주십시요
본문
최근 게시물 스킨 을 적용하면 이상하게 테이블 카체가 커져버리네요 혹시나 몰라 그누보드 다른 최근 게시물을 적용해보면 딱 드러가는뎅 ㅠㅠ
선배님들 좀 도와주세요
최근게시물 스킨은
입니다
제 테이블 소스는
<?
include_once("./_common.php");
include_once("$g4[path]/lib/latest.lib.php");
include_once("./_head.php");
?>
<style type="text/css">
.test_table { background-color: #000000; border: 0; border-spacing: 1px; width: 1250px; font-size: 9pt; }
.test_table th, .test_table td { background-color: #ffffff; height: 30px; table-layout:fixed; }
</style>
<table class="test_table" width="322">
<colgroup>
<col width="50" />
<col width="200" />
<col width="200" />
<col width="200" />
<col width="200" />
<col width="200" />
<col width="200" />
</colgroup>
<tr>
<th colspan="7" width="316">등록중</th>
</tr>
<tr>
<th colspan="4" width="162">현재위치</th>
<th colspan="3" width="149">별도관리 밑 패기 항목/수량</th>
</tr>
<tr>
<td colspan="4" valign="top" style="height: 100px;" width="162"></td>
<td colspan="3" valign="top" width="149"></td>
</tr>
<tr>
<th width="20"></th>
<th width="55">금일</th>
<th colspan="2" width="84">반별</th>
<th colspan="2" width="84">피킹</th>
<th width="54"></th>
</tr>
<tr>
<td valign="top" width="50" height="3">111</td>
<td valign="top" width="50" height="3">2</td>
<td width="40" height="3" align="left" valign="top"><?php echo latest("makeprogress", "YP1", 5, 5); ?></td>
<td width="40" height="3" align="left" valign="top"><?php echo latest("makeprogress", "YP2", 5, 5); ?></td>
<td width="40" height="3" align="left" valign="top"><?php echo latest("makeprogress", "YP3", 5, 5); ?></td>
<td width="40" height="3" align="left" valign="top"><?php echo latest("makeprogress", "YP4", 5, 5); ?></td>
<td valign="top" width="50" height="3">777</td>
</tr>
</table>
이렇케 만드러서 웹에 올리면 ㅠㅠ
http://lenspiking.cafe24.com/12.php.php
이렇케 되버리네요 ㅜㅜ 제가 얼잘못한 걸까요 다른 최근게시물 스킨을 적용하면 다 잘되는데
ㅜㅜ
고수님들에 도움 기다리겠습니다 (__)
답변 2
테이블 가로사이즈가 width: 1250px; 로 되어있네요.
width: 1250px 부분을 width: 1004px 로 변경하고
<table class="test_table" width="322"> 부분에서 width="322"은 제거하고요.
<colgroup>
<col width="50" />
<col width="200" />
<col width="200" />
<col width="200" />
<col width="200" />
<col width="200" />
<col width="200" />
</colgroup>
위의 width항목을 1004px에 맞게 다시 맞추어서 배정해주고요.
그리고 테이블에 나오는 td, th의 width값은 모두 제거하셔야 할 것 같습니다.