최신글에 대하여 질문이있습니다~~^^ 정보
최신글에 대하여 질문이있습니다~~^^본문
메인화면에
최신글 띄우는 것 까지는 성공했는데요~~
최신글 제목에 밑줄이 쳐져있는것은 어떻게 없애는지 설명좀 해주세요~~^^
latest.skin.php
이 파일 어느 부분을 고쳐야 돼는지...
설명좀..
<td>
<? for ($i=0; $i<count($list); $i++) { ?>
<?
//echo $list[$i]['icon_reply'] . "";
echo "<a href='{$list[$i]['href']}'>";
if ($list[$i]['is_notice']) {
echo "<font style='font-family:돋움; font-size:9pt; color:#2C88B9;'><strong>{$list[$i]['subject']}</strong></font>";}
else {
echo "<font style='font-family:돋움; font-size:9pt; color:#6A6A6A;'>{$list[$i]['subject']}</font>";
echo "</a>";}
<? for ($i=0; $i<count($list); $i++) { ?>
<?
//echo $list[$i]['icon_reply'] . "";
echo "<a href='{$list[$i]['href']}'>";
if ($list[$i]['is_notice']) {
echo "<font style='font-family:돋움; font-size:9pt; color:#2C88B9;'><strong>{$list[$i]['subject']}</strong></font>";}
else {
echo "<font style='font-family:돋움; 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-family:돋움; font-size:8pt; color:#9A9A9A;'>{$list[$i]['comment_cnt']}</span></a>";
echo " <a href=\"{$list[$i]['comment_href']}\"><span style='font-family:돋움; 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']}>"; }
// 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'];
?>
<br>
<? } ?>
</td>
echo "" . $list[$i]['icon_file'];
echo "" . $list[$i]['icon_link'];
echo "" . $list[$i]['icon_hot'];
echo "" . $list[$i]['icon_secret'];
?>
<br>
<? } ?>
</td>
5번째 줄에서 밑줄이 생기는거 같은데요..
해결좀 해주세요~~
댓글 전체
1.
latest.skin.php상단에 선언...
----------------------------------------------------------------------------------
<style type="text/css">
a:link, a:visited, a:active, a:hover { text-decoration: none;}
</style>
----------------------------------------------------------------------------------
2.
그누보드/style.css에서 수정(글자색등은 임의 수정가능)...
----------------------------------------------------------------------------------
a:link, a:visited, a:active { text-decoration:none; color:#6B6B6B; }
a:hover { text-decoration:none; color:#438A01; }
----------------------------------------------------------------------------------
#차이점
1은 해당스킨에서만 2는 사이트전체 페이지에서 공통으로 적용...
latest.skin.php상단에 선언...
----------------------------------------------------------------------------------
<style type="text/css">
a:link, a:visited, a:active, a:hover { text-decoration: none;}
</style>
----------------------------------------------------------------------------------
2.
그누보드/style.css에서 수정(글자색등은 임의 수정가능)...
----------------------------------------------------------------------------------
a:link, a:visited, a:active { text-decoration:none; color:#6B6B6B; }
a:hover { text-decoration:none; color:#438A01; }
----------------------------------------------------------------------------------
#차이점
1은 해당스킨에서만 2는 사이트전체 페이지에서 공통으로 적용...
감사합니다^^