게시판 스킨설치 후 줄이 좀 안맞습니다...
게시판 스킨설치 후 줄이 좀 안맞습니다...
글쓴이,날짜 줄이 옆으로 비켜져 있네요...
JS빌더를 쓰고잇는데 처음설치가 된 기본게시판을 적용하면 괜찮은데 스킨을 다른걸 적용하면 이렇게 나오네요...ㅠㅠ
그리고 날짜부분도 한줄로 안나오고 두줄로 나오네요...
수정을 어디서 하나요?
글쓴이,날짜 줄이 옆으로 비켜져 있네요...
JS빌더를 쓰고잇는데 처음설치가 된 기본게시판을 적용하면 괜찮은데 스킨을 다른걸 적용하면 이렇게 나오네요...ㅠㅠ
그리고 날짜부분도 한줄로 안나오고 두줄로 나오네요...
수정을 어디서 하나요?
첨부파일
|
댓글을 작성하시려면 로그인이 필요합니다.
댓글 5개
통상적으로 저런부분은 해당스킨 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>
<? 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"로 고쳐보세요.