영카드에 메인 배너가 크롬에서 상하 부분이 짤립니다
본문
어제 까지는 잘 되던 메인 배너가
크롬에서만 세로가 10% 정도 밖에 안 보이내요
사파리나 익스는 정상 입니다
왜 그럴까요 ?
가로폭이 100% 되는 소스를 찾아서 세팅 한건데 ~
잘 되다가 갑자기 안 되내요
소스 첨부 합니다
--------------------------------
<?php
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
add_stylesheet('<link rel="stylesheet" href="'.G5_SHOP_SKIN_URL.'/style.css">', 0);
?>
<?php
$max_width = $max_height = 0;
$bn_first_class = ' class="sbn_first"';
for ($i=0; $row=sql_fetch_array($result); $i++)
{
if ($i==0) echo '<section id="sbn_idx" class="sbn">'.PHP_EOL.'<h2>쇼핑몰 배너</h2>'.PHP_EOL.'<ul class="slides">'.PHP_EOL;
//print_r2($row);
// 테두리 있는지
$bn_border = ($row['bn_border']) ? ' class="sbn_border"' : '';;
// 새창 띄우기인지
$bn_new_win = ($row['bn_new_win']) ? ' target="_blank"' : '';
$bimg = G5_DATA_PATH.'/banner/'.$row['bn_id'];
if (file_exists($bimg))
{
$banner = '';
$size = getimagesize($bimg);
if($size[2] < 1 || $size[2] > 16)
continue;
if($max_width < $size[0])
$max_width = $size[0];
if($max_height < $size[1])
$max_height = $size[1];
echo '<li'.$bn_first_class.' style="background:url('.G5_DATA_URL.'/banner/'.$row['bn_id'].') center top">'.PHP_EOL;
if ($row['bn_url'][0] == '#')
$banner .= '<a href="'.$row['bn_url'].'">';
else if ($row['bn_url'] && $row['bn_url'] != 'http://') {
$banner .= '<a href="'.G5_SHOP_URL.'/bannerhit.php?bn_id='.$row['bn_id'].'&url='.urlencode($row['bn_url']).'"'.$bn_new_win.'>';
}
echo $banner.'<img src="">';
if($banner)
echo '</a>'.PHP_EOL;
echo '</li>'.PHP_EOL;
$bn_first_class = '';
}
}
if ($i>0) echo '</ul>'.PHP_EOL.'<div class="mainbanner-navigation "><a href="#" class="flex-prev">Prev</a><a href="#" class="flex-next">Next</a></div></section>'.PHP_EOL;
?>
<script>
$(window).load(function() {
$('#sbn_idx').flexslider({
animation: "slide",
slideshowSpeed:8000,
animationSpeed:800,
customDirectionNav: $(".mainbanner-navigation a")
});
});
</script>