최신글 폰트크기 지정이 안됨니다. 정보
최신글 폰트크기 지정이 안됨니다.본문
오류가 나는곳의 주소를 알려주시면 더 빠르고 정확하게 답변 받을 수 있습니다.
오류 주소 : http://gomose.com/
우측에 보시면 해당 최신글이 있는데요..
보기에서 텍스트크기 변경하면 변경이 되거든요...
사용자마다 보는 크기가 틀려서 그런데
한 사이즈로 지정하려고 합니다... 어떻게해야하나요,,, ㅠㅠ 가르쳐주세요
어떤파일을 어떻게 수정해야하는지..
오류 주소 : http://gomose.com/
우측에 보시면 해당 최신글이 있는데요..
보기에서 텍스트크기 변경하면 변경이 되거든요...
사용자마다 보는 크기가 틀려서 그런데
한 사이즈로 지정하려고 합니다... 어떻게해야하나요,,, ㅠㅠ 가르쳐주세요
어떤파일을 어떻게 수정해야하는지..
댓글 전체
최신글 스킨에 보면 파일 열어보면
미리 폰트 스타일 지정이 되어 있는데 그 부분 삭제 하시면
style.css 파일 영향을 받습니다
미리 폰트 스타일 지정이 되어 있는데 그 부분 삭제 하시면
style.css 파일 영향을 받습니다
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<table width="300" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="54"><img src="<?=$latest_skin_path?>/img/board_tite.gif"></td>
<td width="171" background="<?=$latest_skin_path?>/img/board_bg.gif"><div align="right"><a href='<?=$g4[bbs_path]?>/board.php?bo_table=<?=$bo_table?
>'><img src="<?=$latest_skin_path?>/img/board_more.gif" border="0"></a></div></td>
</tr>
<tr>
<td colspan="2">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="100%">
<table width="100%">
<!-- 최신글 목록 -->
<? for ($i=0; $i<count($list); $i++) { ?>
<span class=small>
<tr>
<td colspan=4 align=center width="100%" iframe frameborder="0">
<table width=100%>
<tr>
<td width="100%"><img src='<?=$latest_skin_path?>/img/dot_icon.gif' align=absmiddle>
<?
//날짜표시
$date1 = substr($list[$i][datetime],0,10); //날짜표시형식변경
$date = explode("-", $date1);
$year = $date[0];
$month = $date[1];
$day = $date[2];
$latest_date = $month."/".$day."";
echo $list[$i]['icon_reply'] . " ";
echo "<a href='{$list[$i]['href']}'>";
if ($list[$i]['is_notice'])
echo "[{$latest_date}] <strong>{$list[$i]['subject']}</strong>";
else
echo "[{$latest_date}] {$list[$i]['subject']}";
echo "</a>";
if ($list[$i]['comment_cnt'])
echo " <a href=\"{$list[$i]['comment_href']}\">{$list[$i]['comment_cnt']}</a>";
echo " " . $list[$i]['icon_new'];
?></td></tr>
</table></td>
</tr>
<? } ?>
<? if (count($list) == 0) { ?><tr><td colspan=4 align=center height=50 width="100%"><font color=#6A6A6A>게시물이 없습니다.</a></td></tr><? } ?>
</table>
</td>
</tr>
</table></td>
</tr>
</table>
어디를 수정해야하나요?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<table width="300" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="54"><img src="<?=$latest_skin_path?>/img/board_tite.gif"></td>
<td width="171" background="<?=$latest_skin_path?>/img/board_bg.gif"><div align="right"><a href='<?=$g4[bbs_path]?>/board.php?bo_table=<?=$bo_table?
>'><img src="<?=$latest_skin_path?>/img/board_more.gif" border="0"></a></div></td>
</tr>
<tr>
<td colspan="2">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="100%">
<table width="100%">
<!-- 최신글 목록 -->
<? for ($i=0; $i<count($list); $i++) { ?>
<span class=small>
<tr>
<td colspan=4 align=center width="100%" iframe frameborder="0">
<table width=100%>
<tr>
<td width="100%"><img src='<?=$latest_skin_path?>/img/dot_icon.gif' align=absmiddle>
<?
//날짜표시
$date1 = substr($list[$i][datetime],0,10); //날짜표시형식변경
$date = explode("-", $date1);
$year = $date[0];
$month = $date[1];
$day = $date[2];
$latest_date = $month."/".$day."";
echo $list[$i]['icon_reply'] . " ";
echo "<a href='{$list[$i]['href']}'>";
if ($list[$i]['is_notice'])
echo "[{$latest_date}] <strong>{$list[$i]['subject']}</strong>";
else
echo "[{$latest_date}] {$list[$i]['subject']}";
echo "</a>";
if ($list[$i]['comment_cnt'])
echo " <a href=\"{$list[$i]['comment_href']}\">{$list[$i]['comment_cnt']}</a>";
echo " " . $list[$i]['icon_new'];
?></td></tr>
</table></td>
</tr>
<? } ?>
<? if (count($list) == 0) { ?><tr><td colspan=4 align=center height=50 width="100%"><font color=#6A6A6A>게시물이 없습니다.</a></td></tr><? } ?>
</table>
</td>
</tr>
</table></td>
</tr>
</table>
어디를 수정해야하나요?