테스트 사이트 - 개발 중인 베타 버전입니다

첫번째 게시물의 이미지만 나오는 최신글 스킨을 세로형태로 두칸이 나오도록 하려면~~ 채택완료

더블피디 8년 전 조회 1,972

http://sir.kr/g5_skin/10298">http://sir.kr/g5_skin/10298 

 

게시판 두 개를 세로 형태로 처리 하였는데요...

index.php에 아래와 같이 최신글을 추가하였습니다. 

 

<?php

$options = array( 'thumb_width' => 240, 'thumb_height' => 180, 'box_width' => 280 );

echo latest("latest_box", "a01", 5, 100, 0, $options);

?>

<?php

$options = array( 'thumb_width' => 240, 'thumb_height' => 180, 'box_width' => 280 );

echo latest("latest_box", "a02", 5, 100, 0, $options);

?>

 

 

두칸이 나오도록 하려는데요....???


 

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

답변 1개

채택된 답변
+20 포인트
8년 전

<div style="float:left">

<?php

$options = array( 'thumb_width' => 240, 'thumb_height' => 180, 'box_width' => 280 );

echo latest("latest_box", "a01", 5, 100, 0, $options);

?>

</div>

<div style="float:left;margin-left:10px">

<?php

$options = array( 'thumb_width' => 240, 'thumb_height' => 180, 'box_width' => 280 );

echo latest("latest_box", "a02", 5, 100, 0, $options);

?>

</div>

로그인 후 평가할 수 있습니다

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

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

로그인