<th scope="col" style="font-weight:bold">번호</th>
        <th scope="col" style="text-align:left;font-weight:bold;padding-left:5px">파일이름</th>
        <th scope="col" style="text-align:left;width:40%;font-weight:bold;padding-left:5px">세부내용</th>
        <!--th scope="col" style="font-weight:bold">글쓴이</th-->
        <th scope="col" style="font-weight:bold"><?php echo subject_sort_link('wr_hit', $qstr2, 1) ?>다운 </th>
        <?php if ($is_good) { ?><th scope="col"><?php echo subject_sort_link('wr_good', $qstr2, 1) ?>추천 </a></th><?php } ?>
        <?php if ($is_nogood) { ?><th scope="col"><?php echo subject_sort_link('wr_nogood', $qstr2, 1) ?>비추천 </a></th><?php } ?>
        <th scope="col" style="font-weight:bold"><?php echo subject_sort_link('wr_datetime', $qstr2, 1) ?>날짜 </th>
        <th scope="col" style="font-weight:bold"><?php echo subject_sort_link('wr_datetime', $qstr2, 1) ?>다운로드 </th>
        </tr>
        </thead>
        <tbody>
        <?php
        for ($i=0; $i<count($list); $i++) {
        	if ($i%2==0) $lt_class = "even";
        	else $lt_class = "";
        	$ss_name = "ss_view_{$bo_table}_{$list[$i]['wr_id']}";
        	if (!get_session($ss_name)); set_session($ss_name, TRUE);
        ?>
        <tr class="<?php if ($list[$i]['is_notice']) echo "bo_notice"; ?> <?php echo $lt_class ?>">
            <?php if ($is_checkbox) { ?>
            <td class="td_chk chk_box">
				<input type="checkbox" name="chk_wr_id[]" value="<?php echo $list[$i]['wr_id'] ?>" id="chk_wr_id_<?php echo $i ?>" class="selec_chk">
            	<label for="chk_wr_id_<?php echo $i ?>">
            		<span></span>
            		<b class="sound_only"><?php echo $list[$i]['wr_subject'] ?></b>
            	</label>
            </td>
            <?php } ?>
            <td class="td_num2 t_notice">
            <?php
            if ($list[$i]['is_notice']) // 공지사항
                echo '<strong class="notice_icon">공지</strong>';
            else if ($wr_id == $list[$i]['wr_id'])
                echo "<span class=\"bo_current\">열람중</span>";
            else
                echo $list[$i]['num'];
             ?>
            </td>
리스트 스킨 파일에서 어딜 수정해야되나요?