메인화면 이미지
본문
답변 1
theme/basic/index.php 파일에서...
<div class="latest_top_wr">
<?php
// 이 함수가 바로 최신글을 추출하는 역할을 합니다.
// 사용방법 : latest(스킨, 게시판아이디, 출력라인, 글자수);
// 테마의 스킨을 사용하려면 theme/basic 과 같이 지정
echo latest('theme/pic_list', 'free', 4, 23); // 최소설치시 자동생성되는 자유게시판
echo latest('theme/pic_list', 'qa', 4, 23); // 최소설치시 자동생성되는 질문답변게시판
echo latest('theme/pic_list', 'notice', 4, 23); // 최소설치시 자동생성되는 공지사항게시판
?>
</div>
위 코드 전체를 삭제하고 아래 코드로 변경하세요.
<div class="latest_wr">
<div style="float:left;" class="lt_wr">
<?php echo latest('basic', 'free', 4, 23); ?>
</div>
<div style="float:left;margin-left:2%" class="lt_wr">
<?php echo latest('basic', 'qa', 4, 23); ?>
</div>
<div style="float:left;margin-left:2%" class="lt_wr">
<?php echo latest('basic', 'notice', 4, 23); ?>
</div>
</div>