게시판 스킨설치 후 줄이 좀 안맞습니다... 정보
게시판 스킨설치 후 줄이 좀 안맞습니다...본문
댓글 전체

js빌더는 사용안해봐서 정확히는 모르겠는데...
통상적으로 저런부분은 해당스킨 list.skin.php에서 수정하면 될것 같아요..
통상적으로 저런부분은 해당스킨 list.skin.php에서 수정하면 될것 같아요..
아래부분인거 같은데 어디를 어떻게 해야 하나요?ㅠㅠ
제가 문외한이라서....ㅠㅠ
<!-- 제목 -->
<form name="fboardlist" method="post">
<input type='hidden' name='bo_table' value='<?=$bo_table?>'>
<input type='hidden' name='sfl' value='<?=$sfl?>'>
<input type='hidden' name='stx' value='<?=$stx?>'>
<input type='hidden' name='spt' value='<?=$spt?>'>
<input type='hidden' name='page' value='<?=$page?>'>
<input type='hidden' name='sw' value=''>
<table cellspacing="0" cellpadding="0" class="board_list">
<col width="50" />
<? if ($is_checkbox) { ?><col width="40" /><? } ?>
<col />
<col width="110" />
<col width="40" />
<col width="50" />
<? if ($is_good) { ?><col width="40" /><? } ?>
<? if ($is_nogood) { ?><col width="40" /><? } ?>
<tr>
<th>번호</th>
<? if ($is_checkbox) { ?><th><input onclick="if (this.checked) all_checked(true); else all_checked(false);" type="checkbox"></th><?}?>
<th>제 목</th>
<th>글쓴이</th>
<th><?=subject_sort_link('wr_datetime', $qstr2, 1)?>날짜</a></th>
<th><?=subject_sort_link('wr_hit', $qstr2, 1)?>조회</a></th>
<? if ($is_good) { ?><th><?=subject_sort_link('wr_good', $qstr2, 1)?>추천</a></th><?}?>
<? if ($is_nogood) { ?><th><?=subject_sort_link('wr_nogood', $qstr2, 1)?>비추천</a></th><?}?>
</tr>
제가 문외한이라서....ㅠㅠ
<!-- 제목 -->
<form name="fboardlist" method="post">
<input type='hidden' name='bo_table' value='<?=$bo_table?>'>
<input type='hidden' name='sfl' value='<?=$sfl?>'>
<input type='hidden' name='stx' value='<?=$stx?>'>
<input type='hidden' name='spt' value='<?=$spt?>'>
<input type='hidden' name='page' value='<?=$page?>'>
<input type='hidden' name='sw' value=''>
<table cellspacing="0" cellpadding="0" class="board_list">
<col width="50" />
<? if ($is_checkbox) { ?><col width="40" /><? } ?>
<col />
<col width="110" />
<col width="40" />
<col width="50" />
<? if ($is_good) { ?><col width="40" /><? } ?>
<? if ($is_nogood) { ?><col width="40" /><? } ?>
<tr>
<th>번호</th>
<? if ($is_checkbox) { ?><th><input onclick="if (this.checked) all_checked(true); else all_checked(false);" type="checkbox"></th><?}?>
<th>제 목</th>
<th>글쓴이</th>
<th><?=subject_sort_link('wr_datetime', $qstr2, 1)?>날짜</a></th>
<th><?=subject_sort_link('wr_hit', $qstr2, 1)?>조회</a></th>
<? if ($is_good) { ?><th><?=subject_sort_link('wr_good', $qstr2, 1)?>추천</a></th><?}?>
<? if ($is_nogood) { ?><th><?=subject_sort_link('wr_nogood', $qstr2, 1)?>비추천</a></th><?}?>
</tr>
<col width="50" />
<? if ($is_checkbox) { ?><col width="40" /><? } ?>
<col />
<col width="110" />
<col width="40" />
<col width="50" />
이걸 봅시다.
맨위 <col width="50" /> 는 <th>번호</th> 에 대응하구요.
<? if ($is_checkbox) { ?><col width="40" /><? } ?> 는 <? if ($is_checkbox) { ?><th><input onclick="if (this.checked) all_checked(true); else all_checked(false);" type="checkbox"></th><?}?> 이거에 대응합니다.
그럼 마찬가지로
<col width="40" /> 는 <th><?=subject_sort_link('wr_datetime', $qstr2, 1)?>날짜</a></th> 에 대응하겠죠.
width="40" 을 넉넉 잡아서 width="55px"로 고쳐보세요.
<? if ($is_checkbox) { ?><col width="40" /><? } ?>
<col />
<col width="110" />
<col width="40" />
<col width="50" />
이걸 봅시다.
맨위 <col width="50" /> 는 <th>번호</th> 에 대응하구요.
<? if ($is_checkbox) { ?><col width="40" /><? } ?> 는 <? if ($is_checkbox) { ?><th><input onclick="if (this.checked) all_checked(true); else all_checked(false);" type="checkbox"></th><?}?> 이거에 대응합니다.
그럼 마찬가지로
<col width="40" /> 는 <th><?=subject_sort_link('wr_datetime', $qstr2, 1)?>날짜</a></th> 에 대응하겠죠.
width="40" 을 넉넉 잡아서 width="55px"로 고쳐보세요.
귀찮으면 날짜 출력되는 td에 그냥 nowrap=nowrap 넣으세요
감사합니다...수정되었습니다..^^