최신글 밑줄 어떻게 없애나요?

2013-11-05 16;36;48.jpg
오류가 나는곳의 주소를 알려주시면 더 빠르고 정확하게 답변 받을 수 있습니다.

오류 주소 :
그누보드 여기저기 찾아봐도 font-decoration 아무리 찾아도 underline이 보이지 않네요.
음 어디서 변경할 수 있죠?

첨부파일

|

댓글 3개

a 태그에 걸려있는 상태인거 같은데

<a href="" style="text-decoration:none"> 입니다.
text-decoration 자체가 없습니다...

<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>

<table width="100%" cellpadding=0 cellspacing=0>
<? for ($i=0; $i<count($list); $i++) { ?>
<tr>
<td width="100%" colspan=4 align=left>
<table>
<tr>
<td height=10>
<?
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>";

// if ($list[$i]['link']['count']) { echo "[{$list[$i]['link']['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'];
?></td></tr>
</table></td>
</tr>
<? } ?>

<? if (count($list) == 0) { ?><tr><td colspan=4 align=left height=10><font style='font-family:돋움; font-size:9pt; color:#6A6A6A;'></a></td></tr><? } ?>

</table>
그누보드 기본 style.css 가 링크되어있다면 밑줄 나오지않을텐데요??
스킨 상단에 넣어보세요
<style>
a:link, a:visited, a:active, a:hover { text-decoration:none;}
</style>

댓글 작성

댓글을 작성하시려면 로그인이 필요합니다.

로그인하기
🐛 버그신고