메인화면 이미지

2020-12-17 (목) 22:49:37 1,952

2039950019_1608212958.4114.png

이런식으로 이미지가 뜨는데 안뜨게 할수없나요?

|

답변 1개 / 댓글 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>

답변에 대한 댓글 1개

해결했습니다 감사합니다!

답변을 작성하려면 로그인이 필요합니다.