모바일에서 리스트부분 이미지 사이즈에 대해 질문드립니다.
본문
<li class="gall_href">
<a href="<?php echo $list[$i]['href'] ?>">
<?php
if ($list[$i]['is_notice']) { // 공지사항 ?>
<strong style="width:<?php echo $board['bo_mobile_gallery_width'] ?>px;height:<?php echo $board['bo_mobile_gallery_height'] ?>px">공지</strong>
<?php
} else {
$thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'], $board['bo_mobile_gallery_width'], $board['bo_mobile_gallery_height']);
if($thumb['src']) {
$img_content = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" width="'.$board['bo_mobile_gallery_width'].'" height="'.$board['bo_mobile_gallery_height'].'">';
} else {
$img_content = '<span style="width:'.$board['bo_mobile_gallery_width'].'px;height:'.$board['bo_mobile_gallery_height'].'px">no image</span>';
}
echo $img_content;
}
?>
</a>
</li>
제가 PHP를 몰라서 이부분에서 이미지 사이즈를 조절하는것 같은데 어떻게 수정해야 이미지 사이즈를 크게 할수 있나요?
<a href="<?php echo $list[$i]['href'] ?>">
<?php
if ($list[$i]['is_notice']) { // 공지사항 ?>
<strong style="width:<?php echo $board['bo_mobile_gallery_width'] ?>px;height:<?php echo $board['bo_mobile_gallery_height'] ?>px">공지</strong>
<?php
} else {
$thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'], $board['bo_mobile_gallery_width'], $board['bo_mobile_gallery_height']);
if($thumb['src']) {
$img_content = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" width="'.$board['bo_mobile_gallery_width'].'" height="'.$board['bo_mobile_gallery_height'].'">';
} else {
$img_content = '<span style="width:'.$board['bo_mobile_gallery_width'].'px;height:'.$board['bo_mobile_gallery_height'].'px">no image</span>';
}
echo $img_content;
}
?>
</a>
</li>
제가 PHP를 몰라서 이부분에서 이미지 사이즈를 조절하는것 같은데 어떻게 수정해야 이미지 사이즈를 크게 할수 있나요?
답변 3
게시판 관리자에서 수정하시면 될것 같습니다.
bo_mobile_gallery_width 갤러리 가로
bo_mobile_gallery_height 갤러리 세로
이런 방법이 있었네요 감사합니다.
전 관리자 설정에서 모바일 갤러리 폭을 414 픽셀정도 주었더니
기기에따라 잘나오네요~ 참조하세요~
답변을 작성하시기 전에 로그인 해주세요.