쇼핑몰: 상품 관련 아이콘 수정
@ -330,6 +330,10 @@ input.required:focus {padding:3px 3px 4px;border:0;background:#21272e !important
|
||||
.sct_10 .sct_icon img {display:block}
|
||||
.sct_10 .sct_sns {position:absolute;top:190px;right:20px}
|
||||
|
||||
/* 상품 상세보기 */
|
||||
.sit_icon {display:inline-block;margin:0 0 0 4px}
|
||||
.sit_icon img {margin:0 4px 0 0}
|
||||
|
||||
/* 공지사항 및 커뮤니티 새글 */
|
||||
#sidx_lat {padding:15px 0 0;border-top:1px solid #ddd}
|
||||
#sidx_lat h2 {text-align:center}
|
||||
|
||||
BIN
img/shop/icon_best2.gif
Normal file
|
After Width: | Height: | Size: 890 B |
BIN
img/shop/icon_discount2.gif
Normal file
|
After Width: | Height: | Size: 940 B |
BIN
img/shop/icon_hit2.gif
Normal file
|
After Width: | Height: | Size: 873 B |
BIN
img/shop/icon_new2.gif
Normal file
|
After Width: | Height: | Size: 888 B |
|
Before Width: | Height: | Size: 149 B After Width: | Height: | Size: 134 B |
BIN
img/shop/icon_rec2.gif
Normal file
|
After Width: | Height: | Size: 91 B |
BIN
img/shop/icon_soldout2.gif
Normal file
|
After Width: | Height: | Size: 932 B |
@ -454,16 +454,18 @@ function it_name_icon($it, $it_name="", $url=1)
|
||||
if ($url)
|
||||
$str = '<a href="'.G4_SHOP_URL.'/item.php?it_id='.$it['it_id'].'">'.$str.'</a>';
|
||||
|
||||
if ($it['it_type1']) $str .= ' <img src="'.G4_SHOP_URL.'/img/icon_type1.gif" alt="">';
|
||||
if ($it['it_type2']) $str .= ' <img src="'.G4_SHOP_URL.'/img/icon_type2.gif" alt="">';
|
||||
if ($it['it_type3']) $str .= ' <img src="'.G4_SHOP_URL.'/img/icon_type3.gif" alt="">';
|
||||
if ($it['it_type4']) $str .= ' <img src="'.G4_SHOP_URL.'/img/icon_type4.gif" alt="">';
|
||||
if ($it['it_type5']) $str .= ' <img src="'.G4_SHOP_URL.'/img/icon_type5.gif" alt="">';
|
||||
|
||||
$str .= '<span class="sit_icon">';
|
||||
// 품절
|
||||
$stock = get_it_stock_qty($it['it_id']);
|
||||
if ($stock <= 0)
|
||||
$str .= ' <img src="'.G4_SHOP_URL.'/img/icon_pumjul.gif" alt="품절"> ';
|
||||
$str .= ' <img src="'.G4_SHOP.'/img/icon_soldout2.gif" alt="품절"> ';
|
||||
if ($it['it_type1']) $str .= '<img src="'.G4_URL.'/img/shop/icon_hit2.gif" alt="히트">';
|
||||
if ($it['it_type2']) $str .= '<img src="'.G4_URL.'/img/shop/icon_rec2.gif" alt="추천">';
|
||||
if ($it['it_type3']) $str .= '<img src="'.G4_URL.'/img/shop/icon_new2.gif" alt="신상품">';
|
||||
if ($it['it_type4']) $str .= '<img src="'.G4_URL.'/img/shop/icon_best2.gif" alt="인기">';
|
||||
if ($it['it_type5']) $str .= '<img src="'.G4_URL.'/img/shop/icon_discount2.gif" alt="할인">';
|
||||
|
||||
$str .= '</span>';
|
||||
|
||||
return $str;
|
||||
}
|
||||
|
||||