게시판 리스트 항목 폭조정
아래 첨부 이미지처럼 날자부분에 연도를 넣었더니 폭이 넘쳐 2줄이 되네요...list.skin.php에서
어찌해야될지를 모르겠네요..완전 초짜라 부탁드립니다.
.board_list td.datetime { font:normal 11px tahoma; color:#BABABA; text-align:center; }
이부분인 것 같은데 어찌 해야할지를 모르겠네요...width 적용도 안되고요
첨부파일
|
댓글을 작성하시려면 로그인이 필요합니다.
댓글 2개
<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" />
<? if ($is_good) { ?><col width="40" /><? } ?>
<? if ($is_nogood) { ?><col width="40" /><? } ?>
요기서 합니당