최신 게시물 제목에 색상
본문
최신 게시물 제목에 색상을 넣으려고 하는 하는데요.
어찌 해야 할지 모르겠습니다.
echo "<a href='{$list[$i][href]}' title='{$list[$i][subject]}' onfocus='this.blur()'>{$subject}";
부분에 색상을 삽입하면 색상이 변하기는 하는데
테그까지 같이 노출 되더라구요.
<?
$style = "font-family:dotum; font-size:8pt; color:#b2fffb;";
if ($list[$i][icon_new])
$style = "style='font-family:dotum; font-size:8pt; color:#b2fffb;' ";
$subject = "<span $style>".cut_str($list[$i][subject],70)."</span>"; //제목 글자수 자르기
echo $list[$i][icon_reply] . " ";
echo "<a href='{$list[$i][href]}' title='{$list[$i][subject]}' onfocus='this.blur()'>{$subject}";
if ($list[$i][comment_cnt])
echo " <span style='font-size:8pt; color:#b2fffb;'>{$list[$i][comment_cnt]}</span>";
echo " " . $list[$i][icon_new];
echo "</a>";
?>
답변 2
echo "<a href='{$list[$i][href]}' title='{$list[$i][subject]}' onfocus='this.blur()'><span style='color:#f00;'>{$subject}</span>";
이렇게 넣어보시면...
그냥 스타일시트에서 a 태그에 색 지정을 하심 될 텐데요..