최근게시글 색 바꾸는 방법좀요^^; 정보
최근게시글 색 바꾸는 방법좀요^^;본문
메인에 최근게시글을 축출했는데
글씨 색을 바꾸고 싶은데 어디를 손대야 할지 모르겠네요. 경로를 볼때
board.php라 나옵니다. 이론 상으로는 color=' ' 가 있어야 하는데 찾아봐도 안나타나네요.
혹시 이 파일이 아니라면 어느 파일에 어디를 수정해야 할지 알려주세요 ^^;
초보인지라..... 일단 latest.skin.php 소스를 올려봅니다.
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<table width=100% cellpadding=0 cellspacing=0>
<tr>
<td width=14><img src='<?=$latest_skin_path?>/img/latest_t01.gif'></td>
<td width='100%' background='<?=$latest_skin_path?>/img/bg_latest.gif'> <strong><a href='<?=$g4[bbs_path]?>/board.php?bo_table=<?=$bo_table?>'><?=$board[bo_subject] ?></a></strong></td>
<td width=37 background='<?=$latest_skin_path?>/img/bg_latest.gif'><a href='<?=$g4[bbs_path]?>/board.php?bo_table=<?=$bo_table?>'><img src='<?=$latest_skin_path?>/img/more.gif' border=0></a></td>
<td width=14><img src='<?=$latest_skin_path?>/img/latest_t02.gif'></td>
글씨 색을 바꾸고 싶은데 어디를 손대야 할지 모르겠네요. 경로를 볼때
board.php라 나옵니다. 이론 상으로는 color=' ' 가 있어야 하는데 찾아봐도 안나타나네요.
혹시 이 파일이 아니라면 어느 파일에 어디를 수정해야 할지 알려주세요 ^^;
초보인지라..... 일단 latest.skin.php 소스를 올려봅니다.
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<table width=100% cellpadding=0 cellspacing=0>
<tr>
<td width=14><img src='<?=$latest_skin_path?>/img/latest_t01.gif'></td>
<td width='100%' background='<?=$latest_skin_path?>/img/bg_latest.gif'> <strong><a href='<?=$g4[bbs_path]?>/board.php?bo_table=<?=$bo_table?>'><?=$board[bo_subject] ?></a></strong></td>
<td width=37 background='<?=$latest_skin_path?>/img/bg_latest.gif'><a href='<?=$g4[bbs_path]?>/board.php?bo_table=<?=$bo_table?>'><img src='<?=$latest_skin_path?>/img/more.gif' border=0></a></td>
<td width=14><img src='<?=$latest_skin_path?>/img/latest_t02.gif'></td>
댓글 전체
스킨 파일을 수정해야 한다.
./skin/latest/basic/latest.skin.php
해당파일에서
<?=$board[bo_subject]?> 이부분
./skin/latest/basic/latest.skin.php
해당파일에서
<?=$board[bo_subject]?> 이부분
latest.skin.php 를 올렸습니다. 어떻게 바꿔야 하나요? 제가 완젼 초보라서....
<?=$board[bo_subject]?> 이분을 찾으세요 이 부분이 해당부분입니다. 이부분에 색상을 넣으세요
<font color="ff0000"><?=$board[bo_subject]?></font>
<font color="ff0000">에서 ff0000은 붉은색 rgb값입니다. 색상값을 넣으면 됩니다.
<font color="ff0000"><?=$board[bo_subject]?></font>
<font color="ff0000">에서 ff0000은 붉은색 rgb값입니다. 색상값을 넣으면 됩니다.
아하! 감사합니다. ^^