최근게시물 질문입니다

· 2013-08-18 (일) 16:53:59 · 1080 · 5
123123.PNG
첨부된 사진 보시면 아시겠지만 보시는바와같이

글제목이 있고 코멘트갯수가 있고 new 파일이 출력되잖아요?

근데 저 코멘트 갯수 출력을 (갯수) 이렇게 말고 +갯수

ex) (8) -> +8

이렇게 변경하고 싶은데 혹시 방법이 없을까요?ㅠㅠㅠ

그리고 코멘트갯수 글씨체와 색상도 변경하고 싶습니다..

--------------소스입니다----------------

<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
// 네이버 http://html.nhndesign.com/?mid=ui_pattern_list 참고
// 리메이크: Terrorboy
?>
<link rel="stylesheet" href="<?=$latest_skin_path?>/latest.css" type="text/css" />

<!--ui object -->
<div class="section_ul">
<h2><a href='<?=$g4[bbs_path]?>/board.php?bo_table=<?=$bo_table?>'><?=$board[bo_subject]?></a></h2>
<ul>

<?
for ($i=0; $i<count($list); $i++) {
// 최근 게시물 시간 정렬 수정
$list[$i]['wr_datetime'] = date("Y.m.d", time($list[$i]['wr_datetime']));
?>
<li>
<span class="bu"></span>
<a href="<?=$list[$i]['href']?>"><?=$list[$i]['subject']?></a>
<a href="<?=$list[$i]['comment_href']?>" class="comment"><?=$list[$i]['comment_cnt']?></a><? echo " " . $list[$i][icon_new]; ?>
<span class="time"><?=$list[$i]['wr_datetime']?></span>
</li>
<? } ?>
<? if (count($list) == 0) { ?>
<li><div class="none">최근 게시물이 없습니다.</div></li>
<? } ?>

</ul>
<a class="more" href="<?=$g4[bbs_path]?>/board.php?bo_table=<?=$bo_table?>">
더보기</a> </div>
<!--//ui object -->

첨부파일

123123.PNG (3.9 KB)
0회 2013-08-18 16:53
|

댓글 5개

2013-08-18 (일) 16:56:59
css가 없네용

<a href="<?=$list[$i]['comment_href']?>" class="comment"><?=$list[$i]['comment_cnt']?></a><? echo " " . $list[$i][icon_new]; ?>

class="comment" 지워버리고

+<?=$list[$i]['comment_cnt']?>

이렇게 하면 될거같기도 한대용
안되네요... +(8) 이런식으로 뜨네요ㅠㅠ

CSS 엔

.section_ul .comment{font-size:11px;padding-left:5px}

라고만 잡혀있습니다
폰트 크기와 색상은 알아서 찾아서 변경하였습니다..ㅠㅠ

(8) -> +8 이렇게 바꿀수 있는 방법만 알려주시면 감사하겠습니다 ㅠㅠㅠ
2013-08-18 (일) 17:46:05
아 죄송합니다

lib/common.lib.php 에서

291번째 쯤

$list['comment_cnt'] = "";
if ($list['wr_comment'])
$list['comment_cnt'] = "($list[wr_comment])";

이부분을

$list['comment_cnt'] = "";
if ($list['wr_comment'])
$list['comment_cnt'] = "+$list[wr_comment]";

수정해보세요 해보진 안앗네용
너무너무 감사합니다!!!!! 잘됬네요!!
댓글을 작성하시려면 로그인이 필요합니다.

그누4 질문답변

66,531건

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

+
제목 글쓴이 날짜 조회
13-08-19 조회 1,648
13-08-19 조회 885
13-08-19 조회 1,801
13-08-19 조회 1,059
13-08-19 조회 1,092
13-08-19 조회 1,045
13-08-19 조회 1,072
13-08-19 조회 1,073
13-08-19 조회 872
13-08-19 조회 1,540
13-08-19 조회 2,321
13-08-18 조회 1,023
13-08-18 조회 2,105
13-08-18 조회 5,661
13-08-18 조회 1,650
13-08-18 조회 1,744
13-08-18 조회 1,637
13-08-18 조회 1,081
13-08-18 조회 829
13-08-18 조회 1,041