게시판 내용을 횡으로 보여지게 하려면... 정보
게시판 내용을 횡으로 보여지게 하려면...본문
그누보드를 배우고 있는 초보자입니다.
index.php 에서 다음과 같이 적용했는데 메일화면에서 종방향으로 보여지내요.
이를 횡방향으로 보여지게 하려면 어디를 수정해야 되는지요?
<!-- 메인화면 최신글 시작 -->
<table width="100%" cellpadding=0 cellspacing=0><tr><td valign=top>
<?
// 최신글 시작
{ // 이 함수가 바로 최신글을 추출하는 역할을 합니다.
// latest(스킨, 게시판아이디, 출력라인, 글자수);
echo latest("sygnus_bubble", "HI_bodysecret", 5, 70);
echo latest("sygnus_bubble", "HI_hanbang", 5, 70);
echo latest("latest_gallery_bird", "HI_newclinic", 4, 70);
echo latest("latest_gallery_bird", "HI_skin", 4, 70);
}
?>
</td></tr></table>
<!-- 메인화면 최신글 끝 -->
index.php 에서 다음과 같이 적용했는데 메일화면에서 종방향으로 보여지내요.
이를 횡방향으로 보여지게 하려면 어디를 수정해야 되는지요?
<!-- 메인화면 최신글 시작 -->
<table width="100%" cellpadding=0 cellspacing=0><tr><td valign=top>
<?
// 최신글 시작
{ // 이 함수가 바로 최신글을 추출하는 역할을 합니다.
// latest(스킨, 게시판아이디, 출력라인, 글자수);
echo latest("sygnus_bubble", "HI_bodysecret", 5, 70);
echo latest("sygnus_bubble", "HI_hanbang", 5, 70);
echo latest("latest_gallery_bird", "HI_newclinic", 4, 70);
echo latest("latest_gallery_bird", "HI_skin", 4, 70);
}
?>
</td></tr></table>
<!-- 메인화면 최신글 끝 -->
댓글 전체
<!-- 메인화면 최신글 시작 -->
<table width="100%" cellpadding=0 cellspacing=0>
<tr>
<td width="50%"valign=top><?=latest("sygnus_bubble", "HI_bodysecret", 5, 70);?></td>
<td width="50%" valign=top>최신글</td>
</tr>
<tr>
<td valign=top>최신글</td>
<td valign=top>최신글</td>
</tr>
</table>
<!-- 메인화면 최신글 끝 -->
<table width="100%" cellpadding=0 cellspacing=0>
<tr>
<td width="50%"valign=top><?=latest("sygnus_bubble", "HI_bodysecret", 5, 70);?></td>
<td width="50%" valign=top>최신글</td>
</tr>
<tr>
<td valign=top>최신글</td>
<td valign=top>최신글</td>
</tr>
</table>
<!-- 메인화면 최신글 끝 -->