게시판별로 메인에 노출시 문제... 정보
게시판별로 메인에 노출시 문제...본문
예를 들어 게시판 a,b,c 를 생성했는데...
보통 메인화면에 다 똑같은 디자인으로 부동한 게시판의 최근게시글이 노출되잖아요,,
a, b, c라는 세개 게시판의 최근게시글을 각각 부동한 디자인으로 index.php의 좌, 중, 우 셀에
노출시키려면 어떻게 해야 하죠?
말이 복잡해서 다시 그림으로 설명할께요...

댓글 전체
table 이나 div 이용하면 되지 않나요?
<table width="100%" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td width="32%" valign="top"><?=latest("latest_skin", "board", 5, 30);?></td>
<td width="2%"></td>
<td width="32%" valign="top"><?=latest("latest_skin", "board", 5, 30);?></td>
<td width="2%"></td>
<td width="32%" valign="top"><?=latest("latest_skin", "board", 5, 30);?></td>
</tr>
</tbody>
</table>
테이블 이라던가...
<div style='width:800px;'>
<div style='float:left; width:256px;'><?=latest("latest_skin", "board", 5, 30);?></div>
<div style='float:left; width:16px;'></div>
<div style='float:left; width:256px;'><?=latest("latest_skin", "board", 5, 30);?></div>
<div style='float:left; width:16px;'></div>
<div style='float:left; width:256px;'><?=latest("latest_skin", "board", 5, 30);?></div>
</div>
div 를 이용한다던가 하는 방법이....
div 는 잘 몰라서 아무렇게나 ~ㅁ~ㅁ~
<table width="100%" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td width="32%" valign="top"><?=latest("latest_skin", "board", 5, 30);?></td>
<td width="2%"></td>
<td width="32%" valign="top"><?=latest("latest_skin", "board", 5, 30);?></td>
<td width="2%"></td>
<td width="32%" valign="top"><?=latest("latest_skin", "board", 5, 30);?></td>
</tr>
</tbody>
</table>
테이블 이라던가...
<div style='width:800px;'>
<div style='float:left; width:256px;'><?=latest("latest_skin", "board", 5, 30);?></div>
<div style='float:left; width:16px;'></div>
<div style='float:left; width:256px;'><?=latest("latest_skin", "board", 5, 30);?></div>
<div style='float:left; width:16px;'></div>
<div style='float:left; width:256px;'><?=latest("latest_skin", "board", 5, 30);?></div>
</div>
div 를 이용한다던가 하는 방법이....
div 는 잘 몰라서 아무렇게나 ~ㅁ~ㅁ~
이걸로는 않됩니다... 모든 게시판 을 통째로 이동하는 식이 됩니다.. 제 뜻은 한개씩 각각 다른 디자인으로 독립적으로 움직이는 걸 물어본겁니다...
안녕하세요
저두 이런식으로뽑아오는데요
<?=latest("스킨이름", "테이블이름", 5, 30);?>
제가 알기로는 한게시판만 뽑아 오는걸로 알고있는데요
이렇게 하는것이 왜 모든게시판을 통째로 이동하는건가요
궁금해지네요
알려주세요
저두 이런식으로뽑아오는데요
<?=latest("스킨이름", "테이블이름", 5, 30);?>
제가 알기로는 한게시판만 뽑아 오는걸로 알고있는데요
이렇게 하는것이 왜 모든게시판을 통째로 이동하는건가요
궁금해지네요
알려주세요
디자인을 각각 다르게 하고 싶다면
http://sir.co.kr/bbs/board.php?bo_table=g4_skin&sca=최근게시물
여기에서 최근 게시물들을 다운받으셔서 각각 스킨 이름을 다르게 지정을 해 주시거나
아니면 새롭게 직접 만들어서 사용하는 방법이 있겠네요
http://sir.co.kr/bbs/board.php?bo_table=g4_skin&sca=최근게시물
여기에서 최근 게시물들을 다운받으셔서 각각 스킨 이름을 다르게 지정을 해 주시거나
아니면 새롭게 직접 만들어서 사용하는 방법이 있겠네요
답변주신 모든분들 감사합니다^^;;