영카트 상품 슬라이드
본문
지금 main.30.skin.php 소스를 보면서 궁금해졌는대요
if ($this->css) {
echo "<div id=\"smt_{$this->type}\" class=\"{$this->css}\">\n";
} else {
echo "<div id=\"smt_{$this->type}\" class=\"smt_30\">\n";
}
브라우저에서 F12번 눌러보면 style이 height:280px; 라고 있습니다. 그런데 소스에는 없단말이죠
css를 봐도 찾을수가 없어서 여기에 물어봅니다
!-->답변 1
main.30.skin.php 스킨이라면 쇼핑몰 설정 > 쇼핑몰 초기화면 출력 스킨 설정에 있는
이미지폭, 높이로 크기가 정해집니다.
이미지가 출력되는 곳은 스킨에서 여기이고..
if ($this->view_it_img) {
echo get_it_image($row['it_id'], $this->img_width, $this->img_height, '', '', stripslashes($row['it_name']))."\n";
}
get_it_image 함수는 lib/shop.lib.php 파일에 있고 width, height 도 해당 함수에 있습니다.
$img = '<img src="'.$file_url.'" width="'.$width.'" height="'.$height.'" alt="'.$img_alt.'"';
답변을 작성하시기 전에 로그인 해주세요.