2026, 새로운 도약을 시작합니다.

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

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);

?>

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

d0777e81ace39c6db4c24d14a42655d2_1481163318_1494.png
 

답변 1개

채택된 답변
+20 포인트

<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>

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

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

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

로그인
🐛 버그신고