파폭에서 글사이 라인이 두껍게 나옵니다...수정좀 부탁드립니다.. > 그누4 질문답변

그누4 질문답변

그누보드4 관련 질문은 QA 로 이전됩니다. QA 그누보드4 바로가기
기존 게시물은 열람만 가능합니다.

파폭에서 글사이 라인이 두껍게 나옵니다...수정좀 부탁드립니다.. 정보

파폭에서 글사이 라인이 두껍게 나옵니다...수정좀 부탁드립니다..

본문

<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>

<table width=100% cellpadding=0 cellspacing=0>

<!-- 최신글 제목 -->
<tr>
  <td align="center">
     <table width="95%" border="0" cellspacing="0" cellpadding="0">
          <tr>
               <td width="5"></td>
               <td height="23"><img src="<?=$latest_skin_path?>/img/board_icon1.gif"><strong><a href='<?=$g4[bbs_path]?>/board.php?bo_table=<?=$bo_table?>'><font color=#1749ba><?=$board[bo_subject]?></fpnt></a></strong></td>
               <td align="right"><a href='<?=$g4[bbs_path]?>/board.php?bo_table=<?=$bo_table?>'><img src="<?=$latest_skin_path?>/img/more_img.gif" border=0></a></td>
               <td width="5"></td>
          </tr>
          <tr>
                <td colspan=4 height="1" bgcolor=#ececec></td>
          </tr>
      </table>
   </td>
</tr>
<!-- 최신글 목록 -->
<? for ($i=0; $i<count($list); $i++) { ?>
<tr>
    <td align=center>
        <table width=95%>
        <tr>
            <td height=20> <img src='<?=$latest_skin_path?>/img/board_icon.gif' align=absmiddle>
            <?
            echo $list[$i]['icon_reply'] . " ";
            echo "<a href='{$list[$i]['href']}'>";
            if ($list[$i]['is_notice'])
                echo "<font style='font-size:9pt; color:#2C88B9;'><strong>{$list[$i]['subject']}</strong></font>";
            else
                echo "<font style='font-size:9pt; color:#6A6A6A;'>{$list[$i]['subject']}</font>";
            echo "</a>";

            if ($list[$i]['comment_cnt'])
                echo " <a href=\"{$list[$i]['comment_href']}\"><span style='font-size:8pt; color:#9A9A9A;'>{$list[$i]['comment_cnt']}</span></a>";

            // if ($list[$i]['link']['count']) { echo "[{$list[$i]['link']['count']}]"; }
            // if ($list[$i]['file']['count']) { echo "<{$list[$i]['file']['count']}>"; }

            echo " " . $list[$i]['icon_new'];
          //  echo " " . $list[$i]['icon_file'];
         //   echo " " . $list[$i]['icon_link'];
         //   echo " " . $list[$i]['icon_hot'];
         //   echo " " . $list[$i]['icon_secret'];
            ?></td></tr>
         <tr><td bgcolor=#ececec height=1></td></tr>
        </table></td>
</tr>
<? } ?>

<? if (count($list) == 0) { ?><tr><td align=center height=50><font color=#6A6A6A>게시물이 없습니다.</a></td></tr><? } ?>

</table>

이렇게 사용하면 파폭에서 글사이가로라인이 두껍게 나타납니다...
수정좀 부탁드립니다~

댓글 전체

테이블에  border="0" cellspacing="0" cellpadding="0" 이게 안들어간곳이 있었네요...
아래의 소스로 해보세요...^^

<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>

<table width=100% cellpadding=0 cellspacing=0>

<!-- 최신글 제목 -->
<tr>
  <td align="center">
    <table width="95%" border="0" cellspacing="0" cellpadding="0">
          <tr>
              <td width="5"></td>
              <td height="23"><img src="<?=$latest_skin_path?>/img/board_icon1.gif"><strong><a href='<?=$g4[bbs_path]?>/board.php?bo_table=<?=$bo_table?>'><font color=#1749ba><?=$board[bo_subject]?></fpnt></a></strong></td>
              <td align="right"><a href='<?=$g4[bbs_path]?>/board.php?bo_table=<?=$bo_table?>'><img src="<?=$latest_skin_path?>/img/more_img.gif" border=0></a></td>
              <td width="5"></td>
          </tr>
          <tr>
                <td colspan=4 height="1" bgcolor=#ececec></td>
          </tr>
      </table>
  </td>
</tr>
<!-- 최신글 목록 -->
<? for ($i=0; $i<count($list); $i++) { ?>
<tr>
    <td align=center>
        <table width="95%" border="0" cellspacing="0" cellpadding="0">
        <tr>
            <td height=20>&nbsp;<img src='<?=$latest_skin_path?>/img/board_icon.gif' align=absmiddle>
            <?
            echo $list[$i]['icon_reply'] . " ";
            echo "<a href='{$list[$i]['href']}'>";
            if ($list[$i]['is_notice'])
                echo "<font style='font-size:9pt; color:#2C88B9;'><strong>{$list[$i]['subject']}</strong></font>";
            else
                echo "<font style='font-size:9pt; color:#6A6A6A;'>{$list[$i]['subject']}</font>";
            echo "</a>";

            if ($list[$i]['comment_cnt'])
                echo " <a href=\"{$list[$i]['comment_href']}\"><span style='font-size:8pt; color:#9A9A9A;'>{$list[$i]['comment_cnt']}</span></a>";

            // if ($list[$i]['link']['count']) { echo "[{$list[$i]['link']['count']}]"; }
            // if ($list[$i]['file']['count']) { echo "<{$list[$i]['file']['count']}>"; }

            echo " " . $list[$i]['icon_new'];
          //  echo " " . $list[$i]['icon_file'];
        //  echo " " . $list[$i]['icon_link'];
        //  echo " " . $list[$i]['icon_hot'];
        //  echo " " . $list[$i]['icon_secret'];
            ?></td></tr>
        <tr><td bgcolor=#ececec height=1></td></tr>
        </table></td>
</tr>
<? } ?>

<? if (count($list) == 0) { ?><tr><td align=center height=50><font color=#6A6A6A>게시물이 없습니다.</a></td></tr><? } ?>

</table>
전체 66,554 |RSS
그누4 질문답변 내용 검색

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1402호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT