최신글 추출하고 롤오버되었을때 게시글 텍스트색을 바꿀려면 어떻게 해야되는지 고수님들 부탁드립니다. 정보
최신글 추출하고 롤오버되었을때 게시글 텍스트색을 바꿀려면 어떻게 해야되는지 고수님들 부탁드립니다.본문
<style>
.la_he { font-family:굴림; font-size:9pt; color:#636363;line-height:150%;}
</style>
<table width='<?=$latest_width?>' cellpadding='0' cellspacing='0' border='0'>
<tr>
<td height='3' colspan='3'></td>
</tr>
<? for ($i=0; $i<count($list); $i++) { ?>
<tr>
<td width='<?=$latest_width-82?>' class='la_he'>
<?
$style = "font-family:돋움; font-size:9pt; color:#636363;";
if ($list[$i][icon_new])
$style = "style='font-family:돋움; font-size:9pt; color:#006F00;' ";
$subject = "<span $style>".cut_str($list[$i][subject],15)."</span>"; //제목 글자수 자르기
echo $list[$i][icon_reply] . " ";
echo "<a href='{$list[$i][href]}' title='{$list[$i][subject]}' onfocus='this.blur()'>{$subject}";
echo "</a>";
?>
</td>
<td width='79' align='left' class='la_he' style='padding-top:1px;'><span style='font-size:9pt; color:#999999;'>[ <?=$list[$i][name]?> ]</span>
</td>
</tr>
<? } ?>
<? if (count($list) == 0) { ?><tr><td colspan=3 align=center height=100><font color=#6A6A6A>게시물이 없습니다.</font></td></tr><? } ?>
</tr>
</table>
///////////////////////////////////////////////////////////////////////////////////////
최신글 추출하고 롤오버되었을때 게시글 택스트색을 바꿀려면 어떻게 해야되는지 고수님들 부탁드립니다.
초짜라서 어디를 어떻게 해야되는지 몰르게 씁니다.
부탁드립니다.
즐거운 한주가 되세요.
.la_he { font-family:굴림; font-size:9pt; color:#636363;line-height:150%;}
</style>
<table width='<?=$latest_width?>' cellpadding='0' cellspacing='0' border='0'>
<tr>
<td height='3' colspan='3'></td>
</tr>
<? for ($i=0; $i<count($list); $i++) { ?>
<tr>
<td width='<?=$latest_width-82?>' class='la_he'>
<?
$style = "font-family:돋움; font-size:9pt; color:#636363;";
if ($list[$i][icon_new])
$style = "style='font-family:돋움; font-size:9pt; color:#006F00;' ";
$subject = "<span $style>".cut_str($list[$i][subject],15)."</span>"; //제목 글자수 자르기
echo $list[$i][icon_reply] . " ";
echo "<a href='{$list[$i][href]}' title='{$list[$i][subject]}' onfocus='this.blur()'>{$subject}";
echo "</a>";
?>
</td>
<td width='79' align='left' class='la_he' style='padding-top:1px;'><span style='font-size:9pt; color:#999999;'>[ <?=$list[$i][name]?> ]</span>
</td>
</tr>
<? } ?>
<? if (count($list) == 0) { ?><tr><td colspan=3 align=center height=100><font color=#6A6A6A>게시물이 없습니다.</font></td></tr><? } ?>
</tr>
</table>
///////////////////////////////////////////////////////////////////////////////////////
최신글 추출하고 롤오버되었을때 게시글 택스트색을 바꿀려면 어떻게 해야되는지 고수님들 부탁드립니다.
초짜라서 어디를 어떻게 해야되는지 몰르게 씁니다.
부탁드립니다.
즐거운 한주가 되세요.
댓글 전체
롤오버는
<style>
.la_he { font-family:굴림; font-size:9pt; color:#636363;line-height:150%;}
a:hover { 글꼴, 색지정 }
</style>
그리고 소스중에 이상한부분이 있어 말씀드립니다.
$style = "style='font-family:돋움; font-size:9pt; color:#006F00;' ";
을
$style="'font-family:돋움; font-size:9pt; color:#006F00;' "; 로 바꾸세요.
<style>
.la_he { font-family:굴림; font-size:9pt; color:#636363;line-height:150%;}
a:hover { 글꼴, 색지정 }
</style>
그리고 소스중에 이상한부분이 있어 말씀드립니다.
$style = "style='font-family:돋움; font-size:9pt; color:#006F00;' ";
을
$style="'font-family:돋움; font-size:9pt; color:#006F00;' "; 로 바꾸세요.