그누보드5 도움좀 부탁드립니다.
본문
쭈욱 떙기고 싶은데 안땡겨지네요 2일을 난리를 펴봐도 하질 못하겠습니다.
이벤트 창은 삭제 한 상황이고 현재 코드 입니다.
어떻게 바꾸어 주어야 할까요.
<div id="idx_m2" class="col-lg-6 col-md-12 col-sm-12">
<!-- 최신글 -->
<div class="idx_m2_2 col-lg-12">
<div class="food food1 col-lg-6 col-md-6 col-sm-6">
<?php
// 이 함수가 바로 최신글을 추출하는 역할을 합니다.
// 사용방법 : latest(스킨, 게시판아이디, 출력라인, 글자수);
// 테마의 스킨을 사용하려면 theme/basic 과 같이 지정
$options = array(
'thumb_width' => 500, // 썸네일 width
'thumb_height' => 300, // 썸네일 height
'content_length' => 0 // 간단내용 길이
);
echo latest('theme/basic', 'mun', 6, 25, 1, $options);
?>
</div>
<div class="food food2 col-lg-6 col-md-6 col-sm-6 col-xs-12">
<?php
// 이 함수가 바로 최신글을 추출하는 역할을 합니다.
// 사용방법 : latest(스킨, 게시판아이디, 출력라인, 글자수);
// 테마의 스킨을 사용하려면 theme/basic 과 같이 지정
$options = array(
'thumb_width' => 500, // 썸네일 width
'thumb_height' => 300, // 썸네일 height
'content_length' => 0 // 간단내용 길이
);
echo latest('theme/gallery', 'si', 6, 25, 1, $options);
?>
</div>
</div>
</div>
답변 2
원래 위에 있던 이미지를 지우셨나보네요
theme/noodle2/css/mobile.css 192번째 줄
#idx_m2 .idx_m2_2 {position:relative; max-height:600px; overflow:hidden;} (max-height를 600px로)
theme/noodle2/mobile/skin/latest/basic/style.css 4번째 줄
.it {height:600px;} (height:600px 추가해주세요)
'thumb_height' => 300, // 썸네일 height
이부분을 원하시는 길이만큼 늘리시면 될텐데요 ^^ㅎ